From 94c7996720df6c8546531771cb30e0fc4c669cb8 Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Thu, 26 Jan 2023 01:36:06 -0800 Subject: [PATCH] dont force using lockfile version, maybe incompatibilities due to arch? --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c1b10b30..6a25afd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ######################################################################################################### # Frontend Build ######################################################################################################### -FROM node:18.9.0 as frontend-build +FROM node:18 as frontend-build ARG FASTEN_ENV=sandbox WORKDIR /usr/src/fastenhealth/frontend COPY frontend/package.json frontend/yarn.lock ./ @@ -11,7 +11,7 @@ RUN yarn --version && \ yarn config delete https-proxy && \ yarn config set registry 'http://registry.npmjs.org' && \ yarn config list && \ - yarn install --frozen-lockfile --network-timeout 300000 + yarn install --network-timeout 300000 COPY frontend/ ./ RUN yarn run build -- --configuration ${FASTEN_ENV} --output-path=../dist