1
1

copy whole project from another repo

This commit is contained in:
2020-02-18 16:01:28 +01:00
commit aadff671bd
30 changed files with 1290 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.8.1
ENV PYTHONUNBUFFERED=1
WORKDIR /code/
COPY requirements.txt .
RUN pip install --no-cache-dir --requirement requirements.txt
COPY . .
ENTRYPOINT ["./entrypoint.sh"]