fix: freeze lockfiles for speedup

This commit is contained in:
Nick the Sick 2024-06-30 11:27:14 +02:00
parent 5979f8321d
commit e13e1960fe
No known key found for this signature in database
GPG key ID: F575992F156E5BCC
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ WORKDIR /home/perplexica
COPY ui /home/perplexica/ COPY ui /home/perplexica/
RUN yarn install RUN yarn install --frozen-lockfile
RUN yarn build RUN yarn build
CMD ["yarn", "start"] CMD ["yarn", "start"]

View file

@ -13,7 +13,7 @@ COPY yarn.lock /home/perplexica/
RUN mkdir /home/perplexica/data RUN mkdir /home/perplexica/data
RUN yarn install RUN yarn install --frozen-lockfile
RUN yarn build RUN yarn build
CMD ["yarn", "start"] CMD ["yarn", "start"]