Skip to content

Commit a3433a4

Browse files
authored
build: Pin to golang:1.19.9 for Docker builds (#70)
The next version, 1.19.10, is based on Debian 12 (bookworm), which has a newer glibc version (2.36) than Ubuntu 20.04 (2.31), which our images are based on. So, a Go executable built on the 1.19.10 image can't run because glibc in the resulting image is too old.
1 parent 960289d commit a3433a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fetch or build all required binaries
2-
FROM golang:1.19 as builder
2+
FROM golang:1.19.9 as builder
33

44
ARG VERSION_REF
55
RUN test -n "${VERSION_REF}"

0 commit comments

Comments
 (0)