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.
1 parent 5ec29d4 commit f25d3fcCopy full SHA for f25d3fc
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.20 as base
+FROM golang:1.23 AS base
2
3
ENV GO111MODULE=on
4
WORKDIR /app
@@ -17,12 +17,12 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
17
-ldflags='-s -w -extldflags "-static"' \
18
-o k8s-gen .
19
20
-FROM golang:1.20-alpine3.18 as jsonnet
+FROM golang:1.23-alpine AS jsonnet
21
22
RUN apk add --no-cache git
23
-RUN go install github.com/google/go-jsonnet/cmd/jsonnet@latest
+RUN go install github.com/google/go-jsonnet/cmd/jsonnet@v0.21.0
24
25
-FROM alpine:3.18
+FROM alpine:3.20
26
27
28
@@ -37,4 +37,4 @@ COPY scripts .
37
COPY jsonnet jsonnet
38
COPY LICENSE .
39
40
-ENTRYPOINT ["./gen.sh"]
+ENTRYPOINT ["./gen.sh"]
0 commit comments