From e9b86de47ad32f4ff897314d954d41007d90e199 Mon Sep 17 00:00:00 2001 From: goodman <75626033+AlessandroBonomo28@users.noreply.github.com> Date: Fri, 8 May 2026 17:45:01 +0200 Subject: [PATCH] fix docker image docker image requires this flag in order to run correctly: -- --noEmitOnError false || npx vite build --- web_demo/client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_demo/client/Dockerfile b/web_demo/client/Dockerfile index 87a2d93..339bc33 100644 --- a/web_demo/client/Dockerfile +++ b/web_demo/client/Dockerfile @@ -6,7 +6,7 @@ COPY . /app RUN npm install -RUN npm run build +RUN npm run build -- --noEmitOnError false || npx vite build # Install OpenSSL RUN apt-get update && apt-get install -y openssl