1
0
mirror of https://github.com/alvierahman90/mobile-chemguide.git synced 2025-10-13 07:54:23 +00:00

initial commit

This commit is contained in:
2021-05-02 12:26:15 +01:00
commit d99e8589fd
4 changed files with 69 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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" ]