Initial commit

This commit is contained in:
Marco Realacci 2023-12-07 00:31:47 +01:00
parent 7cacb3532b
commit 1d7e5e7cc8
11 changed files with 246 additions and 1 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM python:latest
LABEL authors="notherealmarco"
WORKDIR /app/
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "/app/main.py"]