From 7840e45fb6f6df312a2a031b4195182a459b0f88 Mon Sep 17 00:00:00 2001 From: Remko Date: Tue, 30 Jan 2024 15:46:02 +0100 Subject: [PATCH] fixed docker file --- pwa/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pwa/Dockerfile b/pwa/Dockerfile index 4df6912f..198df5a8 100644 --- a/pwa/Dockerfile +++ b/pwa/Dockerfile @@ -4,11 +4,16 @@ 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 install -RUN npm install @parcel/watcher COPY . .