From 10ac4ba234b0f37111c7478b8f72f2dccb94bd40 Mon Sep 17 00:00:00 2001 From: MineGame159 Date: Sat, 19 Oct 2024 14:53:00 +0200 Subject: [PATCH] Workaround before we upgrade to Svelte 4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7cda8e..55a3fd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:22-alpine AS build WORKDIR /app COPY package.json . -RUN npm install +RUN npm install --legacy-peer-deps COPY . . RUN npm run build