Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Switch base image to distroless-base and upgrade golang to 1.15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
johngmyers committed Jan 7, 2021
1 parent 8cf2dc0 commit 2e23bd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.13.4
FROM golang:1.15.6
ADD . /go/src/github.com/proofpoint/kapprover
RUN go install github.com/proofpoint/kapprover/cmd/kapprover && \
go test github.com/proofpoint/kapprover/...

FROM debian:10.0-slim
FROM gcr.io/distroless/base-debian10

COPY --from=0 /go/bin/kapprover .
ENTRYPOINT ["/kapprover"]

0 comments on commit 2e23bd3

Please sign in to comment.