From 7f733512a24e14f9e5312016be4b4f7a749ca7ba Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 28 Jul 2025 13:25:01 +0200 Subject: [PATCH] chore(yolk): remove --prod on Dockerfile deps installation --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f70a2d22..64974e1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,13 +20,13 @@ COPY package.json ./ COPY .npmrc ./ COPY pnpm-lock.yaml ./ COPY patches ./patches -RUN pnpm i --frozen-lockfile --ignore-scripts --prod +RUN pnpm i --frozen-lockfile --ignore-scripts # Copy all source files COPY . ./ # Run full install with every postinstall script ( This needs project file ) -RUN pnpm i --frozen-lockfile --prod +RUN pnpm i --frozen-lockfile # Build RUN pnpm build