From 0b6e6b1e9fa2696830987ed436cd87f94e5dad87 Mon Sep 17 00:00:00 2001 From: Gisle Aune Date: Tue, 26 Jun 2018 11:12:52 +0200 Subject: [PATCH] Fixed ssl not working in container (hopefully) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9c4b24e..7159ff9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,5 +22,6 @@ RUN go build -a -installsuffix cgo -ldflags="-s -w" -o /binaries/rpdata-as2story # Move artifacts into final container FROM alpine:latest +RUN apk add --no-cache ca-certificates COPY --from=0 /binaries/* /usr/local/bin/ CMD ["/usr/local/bin/rpdata-graphiql"]