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 b834d5b commit 0db165cCopy full SHA for 0db165c
2
Dockerfile
@@ -1,5 +1,5 @@
1
-# Build image: golang:1.14-alpine3.13
2
-FROM golang:1.17-alpine3.15 as build
+# Build image: golang:1.21.0-alpine3.17
+FROM golang:1.21.0-alpine3.17 as build
3
4
WORKDIR /app
5
@@ -8,8 +8,8 @@ RUN go mod download && go build -o ./build/gau ./cmd/gau
8
9
ENTRYPOINT ["/app/gau/build/gau"]
10
11
-# Release image: alpine:3.14.1
12
-FROM alpine:3.14.1
+# Release image: alpine:3.17
+FROM alpine:3.17
13
14
RUN apk -U upgrade --no-cache
15
COPY --from=build /app/build/gau /usr/local/bin/gau
0 commit comments