podman run image lcls actually executed lc lcls instead of the lcls wrapper script - ENTRYPOINT appends run-time args after itself rather than being replaced by them. Fix: use CMD instead of ENTRYPOINT, which gets fully replaced by run-time args. podman run image (no args) still boots the daemon (LINEAR_CLI_DAEMON=true makes lc become the daemon regardless of argv); podman run image lcls/lc issue list now run exactly that command.
podman run image lclsactually executedlc lclsinstead of the lcls wrapper script - ENTRYPOINT appends run-time args after itself rather than being replaced by them. Fix: use CMD instead of ENTRYPOINT, which gets fully replaced by run-time args.podman run image(no args) still boots the daemon (LINEAR_CLI_DAEMON=true makes lc become the daemon regardless of argv);podman run image lcls/lc issue listnow run exactly that command.