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

Commit

Permalink
Fix debian and apply security update
Browse files Browse the repository at this point in the history
  • Loading branch information
christianjoun authored and johngmyers committed Apr 9, 2019
1 parent e6133ce commit f0aa7fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ ADD . /go/src/github.com/proofpoint/certificate-init-container
RUN go install github.com/proofpoint/certificate-init-container && \
go test github.com/proofpoint/certificate-init-container/...

FROM alpine
FROM debian:9.8-slim

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install --assume-yes \
# These packages are security updates
tzdata=2019a-0+deb9u1

COPY --from=0 /go/bin/certificate-init-container .
ENTRYPOINT ["/certificate-init-container"]

0 comments on commit f0aa7fc

Please sign in to comment.