From 8d2cf2095c90e9c0c3ca95cb4fd0425651c27df4 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Sat, 7 Sep 2024 11:30:28 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B5=8B=E8=AF=95armv7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.trigger | 2 +- packages/ui/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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