From 199e650147bfee4cdab3a99ad7466552f1a95492 Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Wed, 8 Aug 2018 13:10:18 +0530 Subject: [PATCH] Dockerfile: install ca-certificates in the final image Closes https://gitlab.com/commento/commento-ce/issues/65 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7f5aa74..8b47f1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,6 +54,8 @@ COPY --from=frontend-build /commento-ce/frontend/build/prod/images/* /commento-c COPY --from=templates-build /commento-ce/templates/build/prod/templates/ /commento-ce/templates/ COPY --from=db-build /commento-ce/db/build/prod/db/ /commento-ce/db/ +RUN apk update && apk add ca-certificates --no-cache + EXPOSE 8080 WORKDIR /commento-ce/