From 87380ea4e6d56ac2f3dd27eb059d90408cd17d69 Mon Sep 17 00:00:00 2001 From: Remko Date: Tue, 30 Jan 2024 15:49:47 +0100 Subject: [PATCH] dockerfile build --- pwa/Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pwa/Dockerfile b/pwa/Dockerfile index 198df5a8..dc277a2d 100644 --- a/pwa/Dockerfile +++ b/pwa/Dockerfile @@ -4,16 +4,15 @@ WORKDIR /app COPY package.json package-lock.json ./ -RUN npm install @parcel/watcher - -RUN npm install sass - -RUN npm install style-dictionary - # Copy all files from current directory to working dir in image # install node modules and build assets +RUN npm i sass + +RUN npm i style-dictionary + RUN npm install +RUN npm install @parcel/watcher COPY . .