From 76fb2141e4b417a3aa54c499ff61bfd8a7b93260 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Fri, 6 Sep 2024 23:44:43 +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 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