Merge pull request #9 from beatz174-bit/codex/fix-dockerfile-build-errors

Include index.html in Docker build
This commit is contained in:
beatz174-bit
2025-11-21 16:52:01 +10:00
committed by GitHub
+1
View File
@@ -2,6 +2,7 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json package-lock.json* tsconfig*.json vite.config.ts ./
COPY index.html ./
COPY src ./src
COPY public ./public
RUN npm ci --no-audit --no-fund && npm run build