From b2659def9a9ace37c63f7018a5d13b1baef7b95e Mon Sep 17 00:00:00 2001 From: irfan Date: Fri, 13 Sep 2024 03:55:52 +0000 Subject: [PATCH] ci: rollback to yarn, NPM is s*ck --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e4d87e..9b354f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM node:18.17-alpine as builder RUN apk add --no-cache git WORKDIR /app COPY . . -RUN npm install -RUN npm run build +RUN yarn install +RUN yarn build FROM node:18.17-alpine ARG env_target WORKDIR /app