From 47ceb3080a908137f61dee774878aebe3dfad463 Mon Sep 17 00:00:00 2001 From: Remko Date: Tue, 23 Jan 2024 14:24:52 +0100 Subject: [PATCH] updated dockerfile --- pwa/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwa/Dockerfile b/pwa/Dockerfile index 4df6912..e537e37 100644 --- a/pwa/Dockerfile +++ b/pwa/Dockerfile @@ -6,9 +6,9 @@ COPY package.json package-lock.json ./ # Copy all files from current directory to working dir in image # install node modules and build assets -RUN npm install +RUN npm install --legacy-peer-deps -RUN npm install @parcel/watcher +RUN npm install @parcel/watcher --legacy-peer-deps COPY . .