From 7da98100731dba13509bb9d2dc73e811ad10e1a8 Mon Sep 17 00:00:00 2001 From: Dwi Siswanto Date: Sun, 11 Oct 2020 19:11:26 +0700 Subject: [PATCH] :hammer: Justify scripts --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 787ee72..e354b97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,11 +12,13 @@ LABEL maintainer="dwisiswant0" RUN npm config set unsafe-perm true && \ npm install --silent --save-dev -g typescript@3.5.2 && \ - npm config set unsafe-perm false + npm config set unsafe-perm false && \ + apk add --no-cache ca-certificates jq + 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"]