fix(WP-0018/R1): correct binary name in docker CMD to /bin/App
Some checks failed
Test / test (push) Has been cancelled

IHP cabal executable is named 'App' (not 'inter-hub'), matching the
executable declaration in App.cabal.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-29 17:27:57 +02:00
parent 452b1042a0
commit 3fc99d17ec

View File

@@ -93,7 +93,7 @@
coreutils
];
config = {
Cmd = [ "${appPkg}/bin/inter-hub" ];
Cmd = [ "${appPkg}/bin/App" ];
ExposedPorts."8000/tcp" = {};
Env = [
"PORT=8000"