-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Misc] Upgrade pnpm to 8.15.5 and node to 20.11.1
- Loading branch information
1 parent
88c24d6
commit 9066104
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,11 +20,11 @@ | |
# Initialize an agent with node tooling installed (i.e., node, npm, and pnpm) | ||
# We use a multi stages build to install pnpm in a node container, before copying the node executables the Jenkins | ||
# agent without persisting intermediate layers, for a lighter docker image. | ||
FROM node:20.11.0 AS node_base | ||
FROM node:20.11.1 AS node_base | ||
# Enable corepack to be able to manipulate pnpm version. | ||
RUN corepack enable | ||
# Activate and install pnpm. | ||
RUN corepack prepare [email protected].1 --activate | ||
RUN corepack prepare [email protected].5 --activate | ||
# The final docker image of the multi stage build. | ||
FROM jenkins/ssh-agent:jdk11 | ||
# Copy of the location of the installed node tools. | ||
|