fix: possibly fix corepack being dumb

This commit is contained in:
diced 2025-02-03 15:48:21 -08:00
parent ee096249b0
commit fefb9dfd40
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1

View file

@ -1,7 +1,9 @@
FROM node:22-alpine3.20 AS base
FROM node:22-alpine3.21 AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN npm install -g corepack
RUN corepack enable pnpm
RUN corepack prepare pnpm@latest --activate