From b218c1fe1a02bbc6b99191c4faab20946dc4bac8 Mon Sep 17 00:00:00 2001 From: naicoi Date: Thu, 18 May 2023 12:33:05 +0700 Subject: [PATCH] Refactor Dockerfile to remove pnpm installation The commit removes the installation of pnpm from the Dockerfile and installs vercel using npm instead. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f4f393..d058885 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,3 @@ ARG tag=18-alpine FROM node:${tag} -RUN npm install -g pnpm -RUN pnpm i -g vercel \ No newline at end of file +RUN npm install -g vercel \ No newline at end of file