From 1b89c3b5a808b57f1a695b86a8f35e4199e0ed7c Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Sat, 20 Jul 2024 17:56:17 +0800 Subject: [PATCH] chore: upgrade pnpm version in dockerfile --- .github/workflows/ci.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c42f74f..9d28802 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 - name: Install pnpm uses: pnpm/action-setup@v2 with: diff --git a/Dockerfile b/Dockerfile index 13236b4..f25dc27 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN cd reporter && go build . # # Base ------------------------------ FROM node:20-alpine AS base -RUN npm install -g pnpm@8.3.1 +RUN npm install -g pnpm@9.5.0 RUN apk add --update --no-cache python3 py3-pip g++ make # Tianji frontend ------------------------------