Skip to content

Commit 08d4044

Browse files
committed
Bump versions
1 parent 170c252 commit 08d4044

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build image
2-
FROM golang:1.14-alpine as builder
2+
FROM golang:1.15-alpine as builder
33
RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates
44

55
WORKDIR /app
@@ -8,9 +8,9 @@ COPY . .
88
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -installsuffix cgo -o /go/bin/kafka-minion
99

1010
# executable image
11-
FROM alpine:3.11
11+
FROM alpine:3
1212
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
1313
COPY --from=builder /go/bin/kafka-minion /go/bin/kafka-minion
1414

15-
ENV VERSION 1.0.1
15+
ENV VERSION 1.0.2
1616
ENTRYPOINT ["/go/bin/kafka-minion"]

0 commit comments

Comments
 (0)