-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use supported version of pnpm in docker build container based on node…
… runtime fixes #25710
- Loading branch information
1 parent
2dc6fba
commit 490e62e
Showing
2 changed files
with
25 additions
and
3 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 |
---|---|---|
|
@@ -7,7 +7,8 @@ FROM $IMAGE | |
RUN npm install --global [email protected] | ||
|
||
# Install pnpm | ||
RUN npm install --global [email protected] | ||
ARG PNPM_VERSION=0 | ||
RUN npm install --global pnpm@$PNPM_VERSION | ||
|
||
# Install typescript | ||
RUN npm install --global typescript | ||
|
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