From 1ba473aa64fa5c3d89a0c6ae6a0b25345eb551a2 Mon Sep 17 00:00:00 2001 From: anshuman Date: Sun, 28 May 2023 20:09:33 +0530 Subject: [PATCH] fix: dockerfile, as yarn already exists in the container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 62fb89a..3f51fd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ENV PORT=3500 \ EXPOSE ${PORT} -RUN npm install -g pm2 yarn +RUN yarn global add pm2 RUN yarn install