fix(kms): self-heal go.sum re-tag in Dockerfile.server (match main Dockerfile)

Dockerfile.server used plain 'go build' (vendor mode) + a single pre-COPY
'go mod download'. Two breakages: (1) the committed vendor/ lags go.mod
(luxfi/vm v1.2.3 in modules.txt vs v1.3.1 in go.mod) -> 'inconsistent
vendoring'; (2) COPY . . re-clobbers any regenerated go.sum with the stale
committed one, so a force-republished luxfi tag aborts the build on a
checksum mismatch.

Mirror the proven-green main Dockerfile: GOSUMDB=off + rm -f go.sum &&
go mod download before AND after COPY . ., and GOFLAGS=-mod=mod on build
so it resolves from the module cache instead of the inconsistent vendor
tree. Regenerate-not-bypass: integrity still enforced against go.sum.

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
This commit is contained in:
zeekay
2026-07-21 15:38:04 -07:00
co-authored by Hanzo Dev
parent 6609a93178
commit 0c3eca807e
2 changed files with 19 additions and 3 deletions
+18 -2
View File
@@ -16,10 +16,26 @@ RUN git config --global url."https://${GITHUB_TOKEN}@github.com/".insteadOf "htt
WORKDIR /build
COPY go.mod go.sum ./
RUN go mod download
# GOSUMDB=off: luxfi first-party tags are periodically force-republished during the
# ongoing ecosystem re-tag (e.g. luxfi/vm), so immutable sum.golang.org lags the
# proxy and rejects the current bits. Trust the proxy/authed-git source and record
# what is really fetched — integrity is still enforced against the regenerated
# go.sum (regenerate-not-bypass). Mirrors the main Dockerfile.
ENV GOSUMDB=off
RUN rm -f go.sum && go mod download
COPY . .
RUN CGO_ENABLED=1 go build -tags "sqlite_fts5 sqlcipher" \
# `COPY . .` just re-introduced the committed go.sum, which can be stale vs the bits
# primed above when a luxfi tag was force-republished — a -mod=mod build then aborts
# on a go.sum checksum mismatch. Drop and regenerate from the primed cache under
# GOSUMDB=off (same as the main Dockerfile). Without this, that earlier regeneration
# is silently reverted by this COPY.
RUN rm -f go.sum && go mod download
# GOFLAGS=-mod=mod builds from the module cache, not the in-tree vendor/. The
# committed vendor/ can lag go.mod during the re-tag (inconsistent vendoring) and
# also strips supranational/blst C headers. Matches the main Dockerfile.
RUN CGO_ENABLED=1 GOFLAGS=-mod=mod go build -tags "sqlite_fts5 sqlcipher" \
-ldflags="-s -w" -o /usr/local/bin/kms ./cmd/kms
FROM debian:bookworm-slim
+1 -1
View File
@@ -1 +1 @@
1.12.5
1.12.6