This repository was archived by the owner on Oct 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ COPY --from=build /etc/apt/sources.list.d/ /etc/apt/sources.list.d
4545# Install NodeJS
4646
4747# renovate: datasource=github-tags depName=nodejs/node extractVersion=^v(?<version>.*)$
48- ENV NODE_VERSION=22.18 .0
48+ ENV NODE_VERSION=22.19 .0
4949
5050RUN apt-get update -y && \
5151 # Install NodeJs
@@ -65,3 +65,13 @@ RUN npm install -g --ignore-scripts yarn@${YARN_VERSION} && \
6565 npm cache clean --force && \
6666 # Smoke test
6767 yarn --version
68+
69+ # Install pnpm
70+
71+ # renovate: datasource=github-tags depName=pnpm/pnpm extractVersion=^v(?<version>.*)$
72+ ENV PNPM_VERSION=10.15.0
73+
74+ RUN npm install -g --ignore-scripts pnpm@${PNPM_VERSION} && \
75+ npm cache clean --force && \
76+ # Smoke test
77+ pnpm --version
Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ The following example shows the container used for a deployment step with a Azur
3131` ` `
3232
3333## Included Software
34+
3435- [swissgrc/azure-pipelines-dotnet:8](https://github.com/swissgrc/docker-azure-pipelines-dotnet-8) as base image
3536- Node.js 22
3637- Yarn
38+ - pnpm
3739
3840## Tags
3941
You can’t perform that action at this time.
0 commit comments