diff --git a/docker/Dockerfile b/docker/Dockerfile index c52802e..b44e958 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM node:20-alpine AS frontend-builder WORKDIR /app/frontend COPY frontend/package*.json ./ -RUN npm ci +RUN npm install COPY frontend/ ./ RUN npm run build