From 45178d1312584404a26d1c72e18c3cc89e8dbffb Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Fri, 4 Oct 2024 02:48:53 +0000 Subject: [PATCH] ci: change use npm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e5107f..72c4e66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,9 @@ COPY env/$env_target /app/.env RUN echo -e "\n" >> /app/.env RUN echo -e "APP_VERSION=${release_version}" >> /app/.env -RUN yarn install +RUN npm install -RUN yarn build +RUN npm run build FROM nginx:1.16.0-alpine