Skip to content

Commit b55ff86

Browse files
bugerclaude
andauthored
chore(ci): update distroless base to Debian 13 (release-5.8) (#7993)
## Summary - Update distroless base from Debian 12 to Debian 13 (eliminates glibc CVE-2026-0861) No workflow, FIPS, or goreleaser changes. Minimal patch for release-5.8. Supersedes #7992 (closed due to force-push cleanup). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0774284 commit b55ff86

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/Dockerfile.distroless

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Generated by: gromit policy
22

3+
ARG BASE_IMAGE=gcr.io/distroless/base-debian13:nonroot
4+
35
FROM debian:trixie-slim AS deb
46
ARG TARGETARCH
57
ARG BUILD_PACKAGE_NAME
@@ -10,7 +12,7 @@ ENV DEBIAN_FRONTEND=noninteractive
1012
COPY ${BUILD_PACKAGE_NAME}_*${TARGETARCH}.deb /
1113
RUN dpkg -i /${BUILD_PACKAGE_NAME}_*${TARGETARCH}.deb && rm /*.deb
1214

13-
FROM gcr.io/distroless/base-debian12:latest
15+
FROM ${BASE_IMAGE}
1416

1517
COPY --from=deb /opt/tyk-gateway /opt/tyk-gateway
1618

0 commit comments

Comments
 (0)