From 9f19deb8ed05b8281a06dcdfebd5c9e239ec277e Mon Sep 17 00:00:00 2001 From: akiel Date: Fri, 14 Aug 2020 16:35:39 +0200 Subject: [PATCH] Install ca-certificates on image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 89617ec..8bd445b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM alpine:3.10 +RUN apk --no-cache add ca-certificates RUN wget https://github.com/aleph-engineering/rocketchat-notification/releases/download/1.4.1/rocketchat-notification -P /usr/bin/ && chmod +x /usr/bin/rocketchat-notification COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]