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