Skip to content

Commit bb44ea1

Browse files
committed
Update Dockerfile with new alpine and Go versions
1 parent 1ad76bb commit bb44ea1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM golang:1.16-alpine AS builder
1+
FROM golang:1.19-alpine AS builder
22
WORKDIR /tmp/dill
33
COPY . .
44
RUN GOOS=linux GOARCH=amd64 go build -o dist/dill cmd/dill/main.go
55

6-
FROM alpine:3.12.4
6+
FROM alpine:3.17.2
77
RUN apk update && apk --no-cache upgrade
88
COPY --from=builder /tmp/dill/dist/dill /usr/local/bin
99

0 commit comments

Comments
 (0)