chore: add pnpm setup command to Dockerfile for environment configuration

This commit is contained in:
GW_MC
2026-02-23 22:13:53 +08:00
parent be93b5f3e9
commit 3456fa5461

View File

@@ -8,6 +8,7 @@ RUN apt-get update && apt-get install -y \
# Set up pnpm environment # Set up pnpm environment
RUN pnpm config set store-dir /home/node/.local/share/pnpm/store RUN pnpm config set store-dir /home/node/.local/share/pnpm/store
RUN pnpm setup
USER node USER node