ci: update Docker file use NPM instead of Yarn
continuous-integration/drone/push Build is passing Details

pull/92/head
irfan 2024-09-13 03:27:14 +00:00
parent d788a9f1a1
commit 50ac2d97a4
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ FROM node:18.17-alpine as builder
RUN apk add --no-cache git
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
RUN npm install
RUN npm run build
FROM node:18.17-alpine
ARG env_target
WORKDIR /app