blob: ba226a2339446ed314f9ac294fb969965379d578 (
plain)
1
2
3
4
5
6
7
8
|
FROM python:3.7.3-slim
COPY requirements.txt /
RUN apt-get update && apt-get install -y build-essential
RUN pip3 install -r /requirements.txt
COPY . /app
WORKDIR /app
ENTRYPOINT gunicorn app:app -w 2 --threads 2 -b 0.0.0.0:8000
|