We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80e2b9d + c60a410 commit 0f11683Copy full SHA for 0f11683
Dockerfile
@@ -1,5 +1,5 @@
1
# Build the dnsmasq-controller binary
2
-FROM golang:1.14 as builder
+FROM golang:1.20 as builder
3
4
WORKDIR /workspace
5
# Copy the Go Modules manifests
@@ -18,7 +18,7 @@ COPY pkg/ pkg/
18
# Build
19
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o dnsmasq-controller main.go
20
21
-FROM alpine:3.12
+FROM alpine:3.17
22
RUN apk add --no-cache dnsmasq
23
COPY --from=builder /workspace/dnsmasq-controller /dnsmasq-controller
24
0 commit comments