From b7570258c9eabaa38f7e7a3ed119d61cd98b31d7 Mon Sep 17 00:00:00 2001 From: Adrian Rudnik Date: Tue, 16 Aug 2022 14:36:29 +0200 Subject: [PATCH] Hotfix for #23 --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4169740..c013227 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,12 @@ WORKDIR /app COPY package* ./ +RUN set -ex \ + && apk --no-cache upgrade \ + && apk --no-cache add curl ca-certificates \ + && update-ca-certificates \ + && npm install + COPY index.js ./index.js COPY healthcheck.sh /app/healthcheck.sh