ds / Dockerfile
yangtb24's picture
Update Dockerfile
f594d54 verified
raw
history blame
230 Bytes
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"]