]> quire.kejadlen.dev Git - quire.git/commitdiff
Re-declare GIT_VERSION inside the build stage so it expands
authorAlpha Chen <alpha@kejadlen.dev>
Sun, 26 Apr 2026 03:22:30 +0000 (03:22 +0000)
committerAlpha Chen <alpha@kejadlen.dev>
Sun, 26 Apr 2026 14:19:45 +0000 (07:19 -0700)
A pre-FROM ARG is a global build arg and is not in scope inside any
build stage. With it unset in the stage, ${GIT_VERSION} in the curl
URL expanded to an empty string, so we fetched
github.com/git/git/archive/refs/tags/v.tar.gz, got a 404, and the
piped tar exited 2. BuildKit reports the entire RUN command in its
error, which made it look like make was the failing step.

Verified locally: with `ARG GIT_VERSION` re-declared inside the
stage, the variable expands to 2.54.0 as intended.

Dockerfile

index 8221c3a2f52573e14f7ab1e818f88b62264c84bc..c0be095d337e70c647460238eb97f86ee4ea3dce 100644 (file)
@@ -6,6 +6,7 @@
 # quire binary as `quire hook <name>`.
 ARG GIT_VERSION=2.54.0
 FROM debian:trixie-slim AS git-builder
+ARG GIT_VERSION
 
 RUN apt-get update \
     && apt-get install -y --no-install-recommends \