diff --git a/build.trigger b/build.trigger index 7ed6ff82..1e8b3149 100644 --- a/build.trigger +++ b/build.trigger @@ -1 +1 @@ -5 +6 diff --git a/packages/ui/Dockerfile b/packages/ui/Dockerfile index a5532011..b5fe6dbc 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_CONFIG_LOGLEVEL=silly npm install -g pnpm +RUN npm install -g pnpm --loglevel verbose #RUN cd /workspace/certd-client && pnpm install && npm run build RUN cp /workspace/certd-client/dist/* /workspace/certd-server/public/ -rf