trying to fix timeout.

This commit is contained in:
Jason Kulatunga 2023-01-25 22:22:18 -08:00
parent 7554f3bf9d
commit 50a94b1127
1 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,11 @@ ARG FASTEN_ENV=sandbox
WORKDIR /usr/src/fastenhealth/frontend
COPY frontend/package.json frontend/yarn.lock ./
RUN yarn config list && yarn install --frozen-lockfile
RUN yarn --version && \
yarn config delete proxy && \
yarn config delete https-proxy && \
yarn config list && \
yarn install --frozen-lockfile
COPY frontend/ ./
RUN yarn run build -- --configuration ${FASTEN_ENV} --output-path=../dist