diff --git a/Dockerfile b/Dockerfile index 43aca49..9b67bdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:18-alpine AS frontend-build WORKDIR /app/frontend COPY frontend/package*.json ./ -RUN npm ci --silent +RUN npm install COPY frontend/ ./ RUN npm run build