🎉 init

This commit is contained in:
JMARyA 2022-08-23 02:26:24 +02:00
commit 7bf48daab5
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
10 changed files with 297 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM python:3
COPY requirements.txt /
RUN pip3 install -r /requirements.txt
VOLUME /config
COPY src /app
CMD [ "python3", "/app/main.py" ]