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 170c252 commit 08d4044Copy full SHA for 08d4044
Dockerfile
@@ -1,5 +1,5 @@
1
# build image
2
-FROM golang:1.14-alpine as builder
+FROM golang:1.15-alpine as builder
3
RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates
4
5
WORKDIR /app
@@ -8,9 +8,9 @@ COPY . .
8
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -installsuffix cgo -o /go/bin/kafka-minion
9
10
# executable image
11
-FROM alpine:3.11
+FROM alpine:3
12
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
13
COPY --from=builder /go/bin/kafka-minion /go/bin/kafka-minion
14
15
-ENV VERSION 1.0.1
+ENV VERSION 1.0.2
16
ENTRYPOINT ["/go/bin/kafka-minion"]
0 commit comments