From a269bd6526877963ce5ff091da2a170e4e710b17 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 26 Mar 2026 15:04:17 -0700 Subject: [PATCH] Fix UI installPhase: use relative path from cwd after cd in buildPhase Co-Authored-By: Claude Opus 4.6 (1M context) --- containers/pyroscope/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/pyroscope/default.nix b/containers/pyroscope/default.nix index 69e03e6..d465414 100644 --- a/containers/pyroscope/default.nix +++ b/containers/pyroscope/default.nix @@ -47,7 +47,7 @@ let installPhase = '' runHook preInstall mkdir -p $out - cp -r deps/grafana-pyroscope/public/build/* $out/ + cp -r public/build/* $out/ runHook postInstall '';