We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69a19f commit bf2c62eCopy full SHA for bf2c62e
Dockerfile
@@ -11,7 +11,7 @@ COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
11
RUN \
12
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
13
elif [ -f package-lock.json ]; then npm ci; \
14
- elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
+ elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm@8.10.5 && pnpm i --frozen-lockfile; \
15
else echo "Lockfile not found." && exit 1; \
16
fi
17
package.json
@@ -2,7 +2,6 @@
2
"name": "df-docs",
3
"version": "0.4.0",
4
"private": true,
5
- "packageManager": "[email protected]",
6
"scripts": {
7
"build": "next build",
8
"dev": "next dev",
0 commit comments