feat: implementa webapp FastAPI con API swagger e test

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-24 13:56:32 +02:00
parent 24e7d5eede
commit e8ae3603e7
10 changed files with 509 additions and 137 deletions
+2 -2
View File
@@ -5,6 +5,6 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY . .
CMD ["python", "-u", "app.py"]
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]