Skip to content

Commit bf2c62e

Browse files
committed
build: fix pnpm version
1 parent f69a19f commit bf2c62e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
1111
RUN \
1212
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
1313
elif [ -f package-lock.json ]; then npm ci; \
14-
elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
14+
elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm@8.10.5 && pnpm i --frozen-lockfile; \
1515
else echo "Lockfile not found." && exit 1; \
1616
fi
1717

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "df-docs",
33
"version": "0.4.0",
44
"private": true,
5-
"packageManager": "[email protected]",
65
"scripts": {
76
"build": "next build",
87
"dev": "next dev",

0 commit comments

Comments
 (0)