From bc1c510e824a031d7cd838826449cd2246de4cb6 Mon Sep 17 00:00:00 2001 From: olexh Date: Sat, 9 Nov 2024 20:42:05 +0200 Subject: [PATCH] build: remove immutable flag in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f4a555f2..fd8c646c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app # Install dependencies COPY package.json yarn.lock .yarnrc.yml ./ -RUN corepack enable yarn && yarn install --immutable +RUN corepack enable yarn && yarn install # Rebuild the source code only when needed FROM deps AS builder