diff --git a/Dockerfile b/Dockerfile index f1ca9a2..b651953 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-bookworm AS frontend WORKDIR /build COPY frontend/package.json frontend/package-lock.json ./ -RUN npm ci --only=production 2>/dev/null || npm install --legacy-peer-deps +RUN npm ci 2>/dev/null || npm install --legacy-peer-deps COPY frontend/ ./ RUN npx vite build