fix: install pnpm directly, node:26-alpine has no corepack

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
naps62-yolo
2026-08-20 17:08:09 +01:00
parent 511caf1c78
commit 48c9ea314a
+1 -1
View File
@@ -1,6 +1,6 @@
FROM node:26-alpine AS build
WORKDIR /app
RUN corepack enable
RUN npm install -g pnpm@11.21.0
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .