Initial commit

This commit is contained in:
Joan
2026-02-22 12:56:42 +01:00
commit 50eb4f7eca
11 changed files with 3455 additions and 0 deletions

10
app/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.11
RUN mkdir /app
ADD . /app
RUN pip install -r /app/requirements.txt
RUN apt-get update && apt-get install -y fonts-dejavu
WORKDIR /app
CMD [ "python", "/app/app.py" ]