From 3456fa54615a394cbb568984c9dce28cf792b02e Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Mon, 23 Feb 2026 22:13:53 +0800 Subject: [PATCH] chore: add pnpm setup command to Dockerfile for environment configuration --- .devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 264288f..81490c2 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update && apt-get install -y \ # Set up pnpm environment RUN pnpm config set store-dir /home/node/.local/share/pnpm/store +RUN pnpm setup USER node