Skip to content

Commit

Permalink
Merge pull request #35 from uswitch/ca-certificates
Browse files Browse the repository at this point in the history
Install ca certs
  • Loading branch information
mmcgarr authored Jul 22, 2022
2 parents 03c5f34 + d8885a1 commit c68449d
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
@@ -1,6 +1,12 @@
FROM alpine:3 as base

RUN apk add -U --no-cache ca-certificates

FROM scratch

ADD bin/vaultcreds /vaultcreds

COPY --from=base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/

ENTRYPOINT ["/vaultcreds"]
CMD []
CMD []

0 comments on commit c68449d

Please sign in to comment.