From 9dec89add88d1bbe1eb0d9f6b7a174510b3759e0 Mon Sep 17 00:00:00 2001 From: Nico Jensch Date: Thu, 15 Aug 2024 12:57:16 +0200 Subject: [PATCH] ci: workaround Nx post-install script hanging --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c5ad948..7dcb20c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,9 @@ COPY . /build # Enable the use of pnpm and compile the backend RUN corepack enable && corepack prepare pnpm@latest --activate + +# Workaround for nx post-install hanging +RUN pnpm install --ignore-scripts nx RUN pnpm install RUN pnpx nx run backend:build