diff --git a/docker/Dockerfile b/docker/Dockerfile index 265b96dd..c1d25cee 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # Note: Context will be the project root, so paths are relative to root COPY package*.json ./ -RUN npm install +RUN npm install --legacy-peer-deps COPY . . RUN npm run build