diff --git a/Dockerfile b/Dockerfile index a893aae..24f7cdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-alpine AS frontend-builder WORKDIR /build COPY webui/package*.json ./ -RUN npm ci +RUN npm install COPY webui/ . RUN npm run build