We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82cb9c3 commit 81332bdCopy full SHA for 81332bd
Dockerfile
@@ -1,10 +1,10 @@
1
-FROM golang:1.22.1-alpine3.19 as build
+FROM golang:1.23.1-alpine3.20 as build
2
3
WORKDIR /app
4
COPY . /app
5
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build --ldflags '-extldflags=-static' -o github-users main.go
6
7
-FROM alpine:3.19.1
+FROM alpine:3.20
8
COPY --from=build /app/github-users /app/
9
COPY /template /template
10
ENTRYPOINT ["/app/github-users"]
0 commit comments