Skip to content

Commit

Permalink
install CA certs in docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Tantalor93 committed May 12, 2023
1 parent 5e77c8e commit 7742423
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile-goreleaser
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
FROM alpine:latest as certs
RUN apk --update add ca-certificates

FROM scratch
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY dnspyre /dnspyre
ENTRYPOINT ["/dnspyre"]

0 comments on commit 7742423

Please sign in to comment.