From 4e002791093be93d902b77b7519cc4faa96fd62a Mon Sep 17 00:00:00 2001 From: aiyimickey <39365912+aiyimickey@users.noreply.github.com> Date: Wed, 1 Jul 2026 22:00:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20runner=20=E9=98=B6=E6=AE=B5=E5=AE=89?= =?UTF-8?q?=E8=A3=85=20bcryptjs=EF=BC=88standalone=20=E6=9C=AA=E6=89=93?= =?UTF-8?q?=E5=8C=85=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index a1660f2..41c3786 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,5 +27,7 @@ COPY tsconfig.json ./ COPY entrypoint.sh ./ RUN npm install -g tsx tsconfig-paths +# bcryptjs 未被 standalone 打包,需在 runner 阶段安装 +RUN npm install bcryptjs EXPOSE 6181 CMD ["sh", "entrypoint.sh"]