1
0
mirror of https://github.com/alvierahman90/mobile-chemguide.git synced 2024-10-22 12:31:52 +00:00
mobile-chemguide/Dockerfile

11 lines
176 B
Docker
Raw Normal View History

2021-05-02 11:26:15 +00:00
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" ]