Files
mobile-chemguide/Dockerfile
T
2021-05-02 12:26:15 +01:00

11 lines
176 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src/* ./
CMD [ "gunicorn", "-b 0.0.0.0:80", "app:app" ]