From 996e900df8259076e13343a75549997a88680377 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 13:35:14 +0000 Subject: [PATCH] fix: disable npm cache to avoid Docker buildx deadlock --- nixpacks.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixpacks.toml b/nixpacks.toml index bc5b7f9..313981c 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -1,9 +1,11 @@ -# Simple build configuration +# Disable cache to avoid Docker buildx cache issues [phases.install] cmds = ['npm install'] +cacheDirectories = [] [phases.build] cmds = ['npm run build'] +cacheDirectories = [] [start] cmd = 'npm start'