updated for latest api

This commit is contained in:
Kai Jan Kriegel
2022-03-16 05:59:18 +01:00
parent 9e4173883d
commit 8ab59e053f
7 changed files with 133 additions and 85 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.8-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
VOLUME /app/config
CMD [ "python3", "main.py"]