docker: pin Go 1.26 in builder stage images (#8180)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ᴊᴏᴇ ᴄʜᴇɴ
2026-02-13 23:44:13 -05:00
committed by GitHub
parent ea682c5bbc
commit 5f17b670b3
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM golang:alpine3.21 AS binarybuilder
FROM golang:1.26-alpine3.23 AS binarybuilder
RUN apk --no-cache --no-progress add --virtual \
build-deps \
build-base \
@@ -11,7 +11,7 @@ COPY . .
RUN ./docker/build/install-task.sh
RUN TAGS="cert pam" task build
FROM alpine:3.21
FROM alpine:3.23
RUN apk --no-cache --no-progress add \
bash \
ca-certificates \
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:alpine3.23 AS binarybuilder
FROM golang:1.26-alpine3.23 AS binarybuilder
RUN apk --no-cache --no-progress add --virtual \
build-deps \
build-base \