From 011b3e7fcbec3ec2e047e7b0d4311e6ccca7f4af Mon Sep 17 00:00:00 2001 From: KoreX Labs Date: Wed, 16 Sep 2026 00:23:57 -0300 Subject: [PATCH] fix(web): include map worker build script in image --- web-v2/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/web-v2/Dockerfile b/web-v2/Dockerfile index a3cdd13..b3233de 100644 --- a/web-v2/Dockerfile +++ b/web-v2/Dockerfile @@ -4,6 +4,7 @@ COPY package*.json ./ RUN npm ci COPY tsconfig*.json vite.config.ts index.html ./ COPY public ./public +COPY scripts ./scripts COPY src ./src RUN npm run build