From ed0a389df2769d9fc77f67c857e0ce74054f5200 Mon Sep 17 00:00:00 2001 From: smart_ex Date: Tue, 2 Aug 2022 15:46:14 +1000 Subject: [PATCH] update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 203be2c..a0cce39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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