diff --git a/backend/Dockerfile b/backend/Dockerfile index 5601d85..6d5170a 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim@sha256:57cd7c3a7a273101a6485ba99423ee568157882804b1124b4dd04266317710de AS builder +FROM python:3.12-slim@sha256:229a2c5bfa27522db7815ea81f9bed70af17ccb9de9fc7ad142b1877b5830d36 AS builder ARG POETRY_VERSION=2.3.2 RUN pip install --no-cache-dir poetry==${POETRY_VERSION} @@ -18,7 +18,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN poetry install --only main --no-interaction \ && pip install --no-cache-dir --no-deps --force-reinstall /build/core -FROM python:3.12-slim@sha256:57cd7c3a7a273101a6485ba99423ee568157882804b1124b4dd04266317710de +FROM python:3.12-slim@sha256:229a2c5bfa27522db7815ea81f9bed70af17ccb9de9fc7ad142b1877b5830d36 # Logs appear immediately in docker compose logs (no buffering) ENV PYTHONUNBUFFERED=1 \