debug: ...

This commit is contained in:
2025-12-21 12:54:25 +01:00
parent 566f0f6ea2
commit 6f3b21ab17
2 changed files with 8 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ ARG RUNNER
# ===========================================
# Stage 1: Builder
# ===========================================
FROM python:${PYTHON_VERSION}-slim-bookworm as builder
FROM python:${PYTHON_VERSION}-slim-bookworm AS builder
# Re-declare ARGs after FROM to make them available in this stage
ARG RUNNER
@@ -45,7 +45,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
# ===========================================
# Stage 2: Testing
# ===========================================
FROM builder as test
FROM builder AS test
ARG RUNNER
@@ -68,7 +68,7 @@ COPY brain/app.py .
# ===========================================
# Stage 3: Runtime
# ===========================================
FROM python:${PYTHON_VERSION}-slim-bookworm as runtime
FROM python:${PYTHON_VERSION}-slim-bookworm AS runtime
ARG PYTHON_VERSION_SHORT