From d503b8d07332670432a03eaffff768c4d2067f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Mon, 18 May 2026 10:23:47 +0900 Subject: [PATCH] =?UTF-8?q?fix(docker):=20runner=E3=81=A7=E3=81=AEpnpm?= =?UTF-8?q?=E3=81=AE=E4=BE=9D=E5=AD=98=E9=96=A2=E4=BF=82=E3=83=81=E3=82=A7?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=82=92=E7=84=A1=E5=8A=B9=E5=8C=96=20(#1742?= =?UTF-8?q?5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(docker): runnerでのpnpmの依存関係チェックを無効化 * Update Changelog * update changelog --- CHANGELOG.md | 8 +------- Dockerfile | 2 ++ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf9bcbbc6..897ff9949d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,7 @@ ## Unreleased ### General -- - -### Client -- - -### Server -- +- Fix: Dockerで起動に失敗する問題を修正 ## 2026.5.2 diff --git a/Dockerfile b/Dockerfile index f53090a67b..0e6b8ac1f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -74,6 +74,8 @@ FROM --platform=$TARGETPLATFORM node:${NODE_VERSION}-slim AS runner ARG UID="991" ARG GID="991" +ENV PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false + RUN apt-get update \ && apt-get install -y --no-install-recommends \ ffmpeg tini curl libjemalloc-dev libjemalloc2 \