first commit

This commit is contained in:
2026-08-20 21:26:05 +02:00
commit 81717cb9a8
10 changed files with 777 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3.12-slim-bookworm
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py /app/app.py
EXPOSE 80
CMD ["python", "-u", "app.py"]