fix: security issue because of outdated pnpm version (#5683)

This commit is contained in:
Matti Nannt
2025-05-07 00:17:54 +02:00
committed by GitHub
parent 1588c2f47b
commit e95e9f9fda
7 changed files with 7 additions and 8 deletions
+1 -2
View File
@@ -20,7 +20,7 @@ FROM base AS installer
# Enable corepack and prepare pnpm
RUN npm install --ignore-scripts -g corepack@latest
RUN corepack enable
RUN corepack prepare pnpm@9.15.0 --activate
RUN corepack prepare pnpm@9.15.9 --activate
# Install necessary build tools and compilers
RUN apk update && apk add --no-cache cmake g++ gcc jq make openssl-dev python3
@@ -78,7 +78,6 @@ FROM base AS runner
RUN npm install --ignore-scripts -g corepack@latest
RUN corepack enable
RUN corepack prepare pnpm@9.15.0 --activate
RUN apk add --no-cache curl \
&& apk add --no-cache supercronic \
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@formbricks/web",
"version": "0.0.0",
"packageManager": "pnpm@9.15.0",
"packageManager": "pnpm@9.15.9",
"private": true,
"scripts": {
"clean": "rimraf .turbo node_modules .next coverage",