From 04b69c438e88e36b046a865e7067c06980600d23 Mon Sep 17 00:00:00 2001 From: MOZGIII Date: Sat, 20 Jul 2024 09:34:19 +0200 Subject: [PATCH] Fix docker builds --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 350b686..37bce3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,9 @@ FROM base AS builder WORKDIR /src -COPY package*.json ./ -COPY yarn.lock ./ +COPY package.json yarn.lock .yarn ./ -RUN yarn install +RUN yarn install --immutable --immutable-cache COPY . . RUN yarn build