From aacd2fe7dbf92461c810e37b119c2b5c0aad0411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=ED=83=9C=ED=9B=88?= Date: Mon, 22 Jun 2026 11:46:26 +0900 Subject: [PATCH] fix: copy map_editor.html to docker builder stage --- Dockerfile.frontend.prod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.frontend.prod b/Dockerfile.frontend.prod index 6543d09..f44b9a7 100644 --- a/Dockerfile.frontend.prod +++ b/Dockerfile.frontend.prod @@ -14,7 +14,7 @@ RUN npm ci # Copy source code COPY src ./src COPY public ./public -COPY index.html ./ +COPY index.html map_editor.html ./ # Build application RUN npm run build