From f6c2b039b5c8e11e802c4a96c7addcb0eaa09465 Mon Sep 17 00:00:00 2001 From: hzrd149 Date: Fri, 28 Feb 2025 10:02:09 -0600 Subject: [PATCH] fix dockerfile --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 6edc528c5..202a8e34c 100644 --- a/dockerfile +++ b/dockerfile @@ -3,7 +3,7 @@ FROM node:20-alpine AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" -RUN npm install -g pnpm +RUN npm install -g pnpm@9.14.4 WORKDIR /app