diff --git a/build.trigger b/build.trigger index 0cfbf088..00750edc 100644 --- a/build.trigger +++ b/build.trigger @@ -1 +1 @@ -2 +3 diff --git a/packages/ui/Dockerfile b/packages/ui/Dockerfile index c1fe92cc..39b3819d 100644 --- a/packages/ui/Dockerfile +++ b/packages/ui/Dockerfile @@ -2,7 +2,7 @@ FROM node:20-alpine AS builder EXPOSE 7001 WORKDIR /workspace/ COPY . /workspace/ -RUN npm install -g pnpm +RUN npm install -g pnpm@8.15.7 #RUN cd /workspace/certd-client && pnpm install && npm run build RUN cp /workspace/certd-client/dist/* /workspace/certd-server/public/ -rf