From d826c3c1be78f5a1285e7f2d079f7819c85a3bb7 Mon Sep 17 00:00:00 2001 From: Jarrad Price Date: Wed, 25 Aug 2021 23:20:40 +1000 Subject: [PATCH] Update Dockerfile (#4) Changed alpine image to latest and changed npm install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9735109..a383237 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM alpine:3.10 +FROM alpine:latest COPY entrypoint.sh /entrypoint.sh -RUN apk add npm +RUN apk add --update npm RUN npm install -g @google/clasp