ci: set the pnpm version number explicitly (#1357)

* ci: set the pnpm version number explicitly

pnpm latest version is now v10. We still use v9, and the latest version of pnpm was used in
Dockerfile instead of v9.

* ci: add missing pnpm v9
This commit is contained in:
Gauthier
2025-02-14 17:21:08 +01:00
committed by GitHub
parent b29959b063
commit 98a5b05816
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ FROM node:22-alpine
COPY . /app
WORKDIR /app
Run npm install --global pnpm
RUN npm install --global pnpm@9
RUN pnpm install