Skip to content

Commit

Permalink
dont force using lockfile version, maybe incompatibilities due to arch?
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jan 26, 2023
1 parent 74650c4 commit 94c7996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 ./
Expand All @@ -11,7 +11,7 @@ RUN yarn --version && \
yarn config delete https-proxy && \
yarn config set registry 'https://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

Expand Down

0 comments on commit 94c7996

Please sign in to comment.