From 159323a008061372166316505d64b93a30b36a04 Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Tue, 27 Sep 2022 08:28:11 -0700 Subject: [PATCH] force use npmjs registry --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f479be9..6584c9e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/fastenhealth/frontend COPY frontend/package.json ./ #COPY frontend/yarn.lock ./ RUN yarn config set registry "http://registry.npmjs.org" \ - yarn install --frozen-lockfile --network-timeout 100000 + && yarn install --frozen-lockfile --network-timeout 100000 COPY frontend/ ./ RUN yarn run build -- --configuration sandbox --output-path=../dist