From abc24397e0037d8e29abc7c619654f96bf3c1bd2 Mon Sep 17 00:00:00 2001 From: dw1 Date: Tue, 23 Jun 2020 00:45:57 +0700 Subject: [PATCH] :zap: Add jq package to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a24c8be..787ee72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,8 @@ RUN npm config set unsafe-perm true && \ npm config set unsafe-perm false ENV NODE_PATH "/usr/lib/node_modules/" +RUN apk add --no-cache ca-certificates jq + COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]