From 79ff8e4ead30a337cdddafac64f7681388d4c2ec Mon Sep 17 00:00:00 2001 From: naicoi Date: Thu, 18 May 2023 12:31:36 +0700 Subject: [PATCH] Update Dockerfile to use pnpm and install vercel globally The Dockerfile has been updated to use pnpm instead of yarn, and to install vercel globally using pnpm. This change will improve the efficiency of package installation in the container. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3409fa2..2f4f393 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ ARG tag=18-alpine FROM node:${tag} -RUN yarn global add vercel \ No newline at end of file +RUN npm install -g pnpm +RUN pnpm i -g vercel \ No newline at end of file