diff --git a/ui/Dockerfile b/ui/Dockerfile index 4a8a8f6..4ee0890 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -3,6 +3,7 @@ FROM node:22-slim AS build WORKDIR /app COPY package*.json ./ RUN npm install +RUN npm rebuild rollup COPY . . RUN npm run build