diff --git a/Dockerfile b/Dockerfile index ec7d8a6a2..be2768033 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,12 +21,11 @@ RUN apk add --no-cache \ pkgconfig \ python \ zlib-dev -RUN npm i -g yarn COPY package.json ./ -RUN yarn install +RUN npm i COPY . ./ -RUN yarn build +RUN npm run build FROM base AS runner