From e6b21ed8a9770907254f41ac544ffaaaa8d308cc Mon Sep 17 00:00:00 2001 From: Dmitriy Petrov Date: Sat, 11 Jul 2026 20:58:43 +0300 Subject: [PATCH] Copy shared sources into client Docker build --- Dockerfile.client | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.client b/Dockerfile.client index 09cebec..6ae8526 100644 --- a/Dockerfile.client +++ b/Dockerfile.client @@ -7,6 +7,7 @@ COPY package.json package-lock.json ./ RUN npm ci COPY index.html vite.config.js ./ COPY src/web ./src/web +COPY src/shared ./src/shared RUN npm run build FROM ${RUNTIME_IMAGE}