We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ad76bb commit bb44ea1Copy full SHA for bb44ea1
Dockerfile
@@ -1,9 +1,9 @@
1
-FROM golang:1.16-alpine AS builder
+FROM golang:1.19-alpine AS builder
2
WORKDIR /tmp/dill
3
COPY . .
4
RUN GOOS=linux GOARCH=amd64 go build -o dist/dill cmd/dill/main.go
5
6
-FROM alpine:3.12.4
+FROM alpine:3.17.2
7
RUN apk update && apk --no-cache upgrade
8
COPY --from=builder /tmp/dill/dist/dill /usr/local/bin
9
0 commit comments