From baad431605228642f4dea5f150e485fb963f54c7 Mon Sep 17 00:00:00 2001 From: ThePhaseless Date: Mon, 10 Aug 2026 01:22:09 +0200 Subject: [PATCH] chore(ci): drop VERSION cache-comment from final stage --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 500af3a..1124ed9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,9 +54,6 @@ RUN \ uv run pytest --retries 3 FROM app -# VERSION is a runtime-only env var (read by src.consts via Pydantic settings). -# Declared here, not in base, so base/app layer cache keys don't depend on the -# per-commit SHA — that would bust the cache every run. ARG VERSION ENV VERSION=${VERSION} USER 1000