diff --git a/frontend/Dockerfile b/frontend/Dockerfile index acd97ff..1ef139f 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,6 +1,7 @@ FROM node:22-alpine AS build WORKDIR /app COPY package.json package-lock.json tsconfig.json vite.config.ts index.html ./ +COPY public ./public COPY src ./src RUN npm ci && npm run build diff --git a/frontend/index.html b/frontend/index.html index 307c14e..373547b 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,6 +4,7 @@ +