-
François Agneray authoredFrançois Agneray authored
Dockerfile 253 B
FROM python:3.8
WORKDIR /project
RUN pip install gunicorn
COPY requirements.txt ./
COPY src src
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "-w", "8", "--timeout", "600", "-b", "0.0.0.0:80", "anis_services.app:create_app()"]