initial working version

This commit is contained in:
2020-12-27 14:25:27 -05:00
commit 880ae0014e
9 changed files with 426 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.8
ADD requirements.txt /requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
RUN chmod 777 -R /app
WORKDIR /app
ENTRYPOINT ["python", "run.py"]