From 6d371b38c3824bcc5139b29cd3b512633e52cc0a Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Thu, 25 Jul 2024 23:01:20 +0800 Subject: [PATCH] chore: 1.22.3 --- build.trigger | 2 +- packages/ui/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 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 7457e5b3..776eeb07 100644 --- a/packages/ui/Dockerfile +++ b/packages/ui/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine as builder +FROM node:18-alpine AS builder EXPOSE 7001 WORKDIR /workspace/ COPY . /workspace/ @@ -12,7 +12,7 @@ RUN cp /workspace/certd-client/dist/* /workspace/certd-server/public/ -rf FROM node:18-alpine WORKDIR /app/ COPY --from=builder /workspace/certd-server/ /app/ -RUN chmod +x /workspace/certd-server/tools/linux/* +RUN chmod +x /app/tools/linux/* ENV TZ=Asia/Shanghai ENV NODE_ENV=production ENV MIDWAY_SERVER_ENV=production