This commit is contained in:
2026-01-25 14:55:54 +01:00
parent fdf1e0e8ed
commit 9b54db2065
5 changed files with 6 additions and 3 deletions

View File

@@ -8,6 +8,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY backend ./backend
COPY frontend ./frontend
WORKDIR /app/backend
WORKDIR /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8001"]
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "8001"]