feat: implementazione V1 - app.py, Dockerfile, docker-compose, .env.example, requirements

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-24 13:09:46 +02:00
parent 96441e5e10
commit 10ed6f6c2f
7 changed files with 255 additions and 24 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "-u", "app.py"]