Skip to content

Commit b4f66ed

Browse files
harryisfishclaude
andcommitted
fix: use npm to install pnpm in Dockerfile
Replace corepack with npm install for pnpm installation to avoid signature verification issues in Docker build. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a8da820 commit b4f66ed

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docker/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ RUN apk update --no-cache && apk add --no-cache \
66
pixman-dev \
77
cairo-dev \
88
pango-dev \
9-
pkgconfig
9+
pkgconfig \
10+
curl
1011

11-
# Install pnpm
12-
RUN corepack enable && corepack prepare pnpm@latest --activate
12+
# Install pnpm using npm (more reliable than corepack in Docker)
13+
RUN npm install -g pnpm@latest
1314

1415
COPY . /app
1516
WORKDIR /app

0 commit comments

Comments
 (0)