Set new Base version

This commit is contained in:
git
2021-03-22 21:12:58 +01:00
commit efef8a9682
8 changed files with 803 additions and 0 deletions

9
Dockerfile-1 Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3-alpine
COPY . /code/
RUN pip install -r /code/requirements.txt
WORKDIR /code/src/
CMD ["python","scheduler.py"]