From 5da899da76236c0cbd22a607a92ba4615790bd07 Mon Sep 17 00:00:00 2001 From: pehlicd <65170388+pehlicd@users.noreply.github.com> Date: Tue, 15 Oct 2024 17:01:10 +0200 Subject: [PATCH] fix: disable swc and enable babel to fix container image release Signed-off-by: pehlicd <65170388+pehlicd@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f155626..88444c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY ui /app/ui RUN npm install -g npm@latest && \ npm install -D @swc/cli @swc/core && \ - npm install --force + npm install --force --legacy-peer-deps RUN npm run build FROM golang:1.23 as backend-builder