make sure we copy the yarn lockfile into the repo.

This commit is contained in:
Jason Kulatunga 2022-09-27 07:56:03 -07:00
parent e043985e7f
commit 1ed02a3a70
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@ FROM node:18.9.0 as frontend-build
WORKDIR /usr/src/fastenhealth/frontend
#COPY frontend/package.json frontend/yarn.lock ./
COPY frontend/package.json ./
COPY frontend/yarn.lock ./
RUN yarn install --frozen-lockfile
COPY frontend/ ./
RUN yarn run build -- --configuration sandbox --output-path=../dist