update Dockerfile

This commit is contained in:
smart_ex 2022-08-02 15:46:14 +10:00
parent 5a8b6247a9
commit ed0a389df2

View File

@ -7,7 +7,7 @@ WORKDIR /usr/app
COPY yarn.lock .
COPY package.json .
RUN apk update && apk add --no-cache g++ make python3 && rm -rf /var/cache/apk/*
RUN yarn install --network-concurrency 2
RUN yarn install
COPY . ./
RUN yarn build