Merge pull request #76 from trails-cool/fix-node25-corepack

Fix Docker builds: corepack removed in Node 25
This commit is contained in:
Ullrich Schäfer 2026-03-25 22:43:00 +01:00 committed by GitHub
commit ebe4ccd838
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
FROM node:25-slim AS base
RUN corepack enable && corepack prepare pnpm@10.6.5 --activate
RUN npm install -g pnpm@10.6.5
WORKDIR /app
FROM base AS deps

View file

@ -1,5 +1,5 @@
FROM node:25-slim AS base
RUN corepack enable && corepack prepare pnpm@10.6.5 --activate
RUN npm install -g pnpm@10.6.5
WORKDIR /app
FROM base AS deps