Skip to content

Commit

Permalink
Remove frozen lock file in yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
sjiampojamarn committed Oct 5, 2024
1 parent 6e355dc commit 1419b51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /home/perplexica

COPY ui /home/perplexica/

RUN yarn install --frozen-lockfile
RUN yarn install
RUN yarn build

COPY replace-variables.sh /home/perplexica/replace-variables.sh
Expand Down
2 changes: 1 addition & 1 deletion backend.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY yarn.lock /home/perplexica/

RUN mkdir /home/perplexica/data

RUN yarn install --frozen-lockfile
RUN yarn install
RUN yarn build

CMD ["yarn", "start"]

0 comments on commit 1419b51

Please sign in to comment.