From 56f89fe5e9ace247e8a8093e7c57945c78ec1491 Mon Sep 17 00:00:00 2001 From: gioelecerati Date: Fri, 16 Aug 2024 09:20:57 +0200 Subject: [PATCH] yarn: remove deprecated frozen lock file and use immutable --- .github/workflows/test.yaml | 2 +- packages/api/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1425ffdb82..a88ec2c608 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -50,7 +50,7 @@ jobs: cache: "yarn" - name: yarn install - run: yarn install --frozen-lockfile + run: yarn install --immutable - name: yarn lint run: yarn run prettier:check diff --git a/packages/api/Dockerfile b/packages/api/Dockerfile index c266a172b4..f9bd568841 100644 --- a/packages/api/Dockerfile +++ b/packages/api/Dockerfile @@ -2,7 +2,7 @@ FROM node:18 as builder WORKDIR /app COPY . . -RUN yarn install --frozen-lockfile --ignore-scripts +RUN yarn install --immutable --ignore-scripts RUN yarn run prepare:lerna RUN cd packages/www && yarn run static RUN cd packages/api && yarn run esbuild