From 5e9753508261df3d7f9521699a3b1e4205241960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Nov 2025 15:41:48 +0100 Subject: [PATCH] fix: install pnpm via npm instead of corepack MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Alpine npm package doesn't include corepack. Install pnpm globally via npm instead. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c86e53..406f29a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,7 @@ FROM ruby:3.4.1-alpine AS builder # Install build dependencies -RUN apk add --no-cache build-base nodejs npm - -# Enable corepack for pnpm -RUN corepack enable +RUN apk add --no-cache build-base nodejs npm && npm install -g pnpm # Set working directory WORKDIR /app