Bug
After #191 added clap CLI with subcommands, the Dockerfiles still use the old invocation:
ENTRYPOINT ["openab"]
CMD ["/etc/openab/config.toml"]
This results in:
error: unrecognized subcommand '/etc/openab/config.toml'
The new clap CLI expects:
openab run /etc/openab/config.toml
Fix
Change CMD in all Dockerfiles:
CMD ["run", "/etc/openab/config.toml"]
Affected files: Dockerfile, Dockerfile.claude, Dockerfile.codex, Dockerfile.copilot, Dockerfile.gemini
Bug
After #191 added clap CLI with subcommands, the Dockerfiles still use the old invocation:
This results in:
The new clap CLI expects:
Fix
Change
CMDin all Dockerfiles:Affected files:
Dockerfile,Dockerfile.claude,Dockerfile.codex,Dockerfile.copilot,Dockerfile.gemini