import code

This commit is contained in:
Fabio Scotto di Santolo
2025-06-10 21:42:42 +02:00
parent d8cd36fa21
commit 11afc7a4ac
4 changed files with 130 additions and 0 deletions

12
Dockerfile Executable file
View File

@@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
COPY app.py .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["python", "app.py"]