diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index c032657..cedd54c 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -48,4 +48,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')" || exit 1 # Run the application -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] +CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"]