docker tweaks

This commit is contained in:
2020-03-19 13:47:21 -04:00
parent 408a252368
commit 5eccee69cf
6 changed files with 434 additions and 15 deletions

View File

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