From ddd211bab8b8445a2b44dff81f0755b78510d231 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 1 Mar 2026 19:06:26 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Dockerfile=20=E3=81=AE=E3=83=84=E3=83=BC?= =?UTF-8?q?=E3=83=AB=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E3=82=92?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Doppler CLI: 3.75.2 → 3.75.3 - Node.js: v22.14.0 → v22.22.0 (LTS最新) Co-Authored-By: Claude Opus 4.6 --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index bbc7a890..fbe50a12 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -35,7 +35,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -ARG DOPPLER_CLI_VERSION=3.75.2 +ARG DOPPLER_CLI_VERSION=3.75.3 # Install Doppler CLI from GitHub releases for latest security patches # https://docs.doppler.com/docs/install-cli @@ -59,7 +59,7 @@ RUN OP_VERSION="${OP_CLI_VERSION}" \ && chmod g+s /usr/local/bin/op # Install Node.js -RUN NODE_VERSION=v22.14.0 \ +RUN NODE_VERSION=v22.22.0 \ && NODE_ARCH=$(dpkg --print-architecture | sed 's/amd64/x64/;s/armhf/armv7l/;s/arm64/arm64/') \ && wget -q https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-${NODE_ARCH}.tar.xz \ && tar -xJf node-${NODE_VERSION}-linux-${NODE_ARCH}.tar.xz -C /usr/local --strip-components=1 \