Skip to content

Commit

Permalink
fix: pin base go image to 1.19.9
Browse files Browse the repository at this point in the history
1.19.10 includes a change on linked libraries that's messing up our manager binary

see golang/go#47257 and golang/go#57328
(issues are closed, but the error is the same)
  • Loading branch information
kirederik committed Jun 15, 2023
1 parent 90672cf commit f0adcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$TARGETPLATFORM golang:1.19 as builder
FROM --platform=$TARGETPLATFORM golang:1.19.9 as builder
ARG TARGETARCH
ARG TARGETOS

Expand Down

0 comments on commit f0adcb5

Please sign in to comment.