diff --git a/Dockerfile b/Dockerfile index 9b354f4..9e4d87e 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 yarn install -RUN yarn build +RUN npm install +RUN npm run build FROM node:18.17-alpine ARG env_target WORKDIR /app