fix: do proper backend docker build

This commit is contained in:
2025-07-24 16:59:31 +00:00
parent 3eb1522525
commit 830a9280b4
3 changed files with 16 additions and 11 deletions

View File

@@ -7,4 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
ENV PYTHONPATH=/app
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "8000"]