From d4b176e4d1cb96b4202a009b83fcb8c8757f37dd Mon Sep 17 00:00:00 2001 From: mARTin-B78 Date: Wed, 10 Jun 2026 04:03:10 +0200 Subject: [PATCH] Bake VERSION into Docker image so About page shows correct version Without COPY VERSION, _read_version() fell back to "0.0.0". The volume mount is a runtime override; the baked-in copy is the reliable baseline. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0b33377..907a405 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,7 @@ RUN pip install --no-cache-dir -r /tmp/requirements.txt WORKDIR /app COPY server.py . COPY CHANGELOG.md . +COPY VERSION . COPY core/ core/ COPY routes/ routes/ COPY static/ static/