fix: correct paths in Dockerfiles for requirements and package files
Some checks failed
Deploy Application / deploy (push) Failing after 53s
Test runner / check-runner (push) Successful in 3s

This commit is contained in:
2026-01-06 21:55:02 +01:00
parent 9890563dc2
commit 57dd7d169f
2 changed files with 3 additions and 3 deletions

View File

@@ -2,9 +2,9 @@ FROM python:3.12-slim
WORKDIR /app
COPY backend/requirements.txt /app/
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY backend /app
COPY . /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]