From 818e5bc444e0d3a747110762d67d085be808de1f Mon Sep 17 00:00:00 2001 From: Alexander Lauster Date: Sun, 23 Jun 2019 13:03:31 +0200 Subject: [PATCH] Add SSL CA Certificates to the image to allow access to S3 Buckets with active HTTPS --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 822e875..25661aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ FROM scratch AS final LABEL maintainer="Andrea Spacca " COPY --from=build /go/bin/transfersh /go/bin/transfersh +COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt ENTRYPOINT ["/go/bin/transfersh", "--listener", ":8080"]