From 570f605ac7e7543d24bda23961f2be8bcde9620f Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 15 Mar 2026 00:59:39 +0100 Subject: [PATCH] fix: restore forced install phase for linux native bindings supportedArchitectures alone is not sufficient; force reinstall is needed to fetch the correct linux binding at build time. Co-Authored-By: Claude Sonnet 4.6 --- nixpacks.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixpacks.toml b/nixpacks.toml index 76f0a31..24cda5a 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -1,5 +1,8 @@ [phases.setup] nixPkgs = ["nodejs_23", "pnpm"] +[phases.install] +cmds = ["pnpm install --no-frozen-lockfile --force"] + [phases.build] cmds = ["pnpm build"]