From 3fc99d17ecdba64679674654f816899995ff773f Mon Sep 17 00:00:00 2001 From: tegwick Date: Wed, 29 Apr 2026 17:27:57 +0200 Subject: [PATCH] fix(WP-0018/R1): correct binary name in docker CMD to /bin/App IHP cabal executable is named 'App' (not 'inter-hub'), matching the executable declaration in App.cabal. Co-Authored-By: Claude Sonnet 4.6 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9697b21..1fdfa84 100644 --- a/flake.nix +++ b/flake.nix @@ -93,7 +93,7 @@ coreutils ]; config = { - Cmd = [ "${appPkg}/bin/inter-hub" ]; + Cmd = [ "${appPkg}/bin/App" ]; ExposedPorts."8000/tcp" = {}; Env = [ "PORT=8000"