Defalt-404's picture
added gunicorn
9bcfea3
raw
history blame
213 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["gunicorn", "-c", "gunicorn_config.py", "app:app"]