From a98d05dec35e727beaf375c45e2f5e314bd193cf Mon Sep 17 00:00:00 2001 From: Ivan Date: Thu, 23 Apr 2026 15:07:27 -0500 Subject: [PATCH] chore(docker): update pnpm version to 10.33.0 and add patches directory to Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 045fd73..3d697cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,9 @@ FROM ${NODE_IMAGE}@${NODE_HASH} AS build-frontend WORKDIR /src RUN apk add --no-cache git COPY package.json pnpm-lock.yaml vite.config.js tailwind.config.js postcss.config.js ./ +COPY patches ./patches COPY meshchatx/src/frontend ./meshchatx/src/frontend -RUN npm install -g pnpm@10.32.1 && \ +RUN npm install -g pnpm@10.33.0 && \ pnpm config set verify-store-integrity true && \ pnpm install --frozen-lockfile && \ pnpm run build-frontend