Refactoring and bug fixes
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m7s

This commit is contained in:
Tudor Sitaru
2026-01-06 16:30:32 +00:00
parent 0ea4720ac1
commit 54e4bc2e77
11 changed files with 1246 additions and 534 deletions

View File

@@ -26,6 +26,6 @@ COPY data/ ./data/
# Expose the application port
EXPOSE 80
# Run the application
CMD ["uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "80"]
# Run the application (using module import)
CMD ["python", "-m", "uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "80"]