Skip to content
This repository was archived by the owner on Oct 31, 2025. It is now read-only.

Commit d6ccfb1

Browse files
committed
Merge branch 'release/22.19.0'
2 parents e1f5267 + 6cd213e commit d6ccfb1

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Dockerfile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff 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

5050
RUN 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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)