ci: Add pnpm to dev container (#17151)

This commit is contained in:
shortstacked
2025-07-09 11:21:56 +01:00
committed by GitHub
parent ba692281f0
commit 9afa6d452a

View File

@@ -3,5 +3,7 @@ FROM n8nio/base:22
RUN apk add --no-cache --update openssh sudo shadow bash
RUN echo node ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/node && chmod 0440 /etc/sudoers.d/node
RUN mkdir /workspaces && chown node:node /workspaces
RUN npm install -g pnpm
USER node
RUN mkdir -p ~/.pnpm-store && pnpm config set store-dir ~/.pnpm-store --global