1
0
mirror of https://github.com/alvierahman90/mobile-chemguide.git synced 2024-10-22 20:31:54 +00:00
mobile-chemguide/Dockerfile
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" ]