Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
weeco committed Sep 25, 2020
1 parent 170c252 commit 08d4044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build image
FROM golang:1.14-alpine as builder
FROM golang:1.15-alpine as builder
RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates

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

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

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

0 comments on commit 08d4044

Please sign in to comment.