From 653b82d611907abab19d9916fa3e8b1d38848c86 Mon Sep 17 00:00:00 2001 From: Mabe Date: Sat, 20 Jun 2026 23:28:01 +0200 Subject: [PATCH] fix: add debug output for requirements installation in Dockerfile --- backend/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index a2a188e..f195088 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,6 +1,8 @@ FROM python:3.12-slim WORKDIR /app COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +# debug: show requirements contents during build to ensure correct file is copied +RUN echo "--- requirements.txt ---" && cat requirements.txt && echo "--- pip install start ---" \ + && pip install --no-cache-dir -r requirements.txt COPY app ./app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]