| FROM python:3.9-slim-buster | |
| WORKDIR /app | |
| COPY requirements.txt requirements.txt | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| CMD ["gunicorn", "--log-level", "debug", "-k", "gevent", "-w", "4", "-b", "0.0.0.0:8000", "app:app"] | |
| FROM python:3.9-slim-buster | |
| WORKDIR /app | |
| COPY requirements.txt requirements.txt | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| CMD ["gunicorn", "--log-level", "debug", "-k", "gevent", "-w", "4", "-b", "0.0.0.0:8000", "app:app"] | |