fix: Dockerfile.frontend.prod에 mobile.html 복사 단계 추가하여 빌드 에러 수정
All checks were successful
ITAM Code Check / build-and-config-check (push) Successful in 13s
ITAM Docker Build Check / docker-build-check (push) Successful in 16s

This commit is contained in:
이태훈
2026-06-25 14:13:55 +09:00
parent 7389ed2d82
commit 1ab59bc9e1

View File

@@ -14,7 +14,7 @@ RUN npm ci
# Copy source code
COPY src ./src
COPY public ./public
COPY index.html map_editor.html ./
COPY index.html map_editor.html mobile.html ./
# Build application
RUN npm run build