From 6c28b3072246fb361c537282e3eac5ab9b6ac85e Mon Sep 17 00:00:00 2001 From: Sy Brand Date: Mon, 17 Feb 2020 16:06:07 +0000 Subject: [PATCH] Update Dockerfile It seems GH actions now requires --unsafe-perm on npm install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a6d50ae..c1d3ae2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM node:10-alpine -RUN npm install -g @11ty/eleventy +RUN npm install -g @11ty/eleventy --unsafe-perm COPY entrypoint.sh / RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]