Include index.html in Docker build

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