diff --git a/Dockerfile b/Dockerfile index 7d6236b..d69a1f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,8 @@ # --- web: build the dashboard into web/dist --- FROM node:20-alpine AS web WORKDIR /src/web -COPY web/package.json web/package-lock.json* ./ -RUN npm ci || npm install +COPY web/package.json web/package-lock.json ./ +RUN npm ci COPY web/ ./ RUN npm run build