Feliz / Dockerfile
SherlockRamos's picture
Update Dockerfile
1e93260 verified
raw
history blame
173 Bytes
FROM python:3.8-slim
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip && pip install -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]