Commit 9e456b1
fix(agent-image): relock uses uv image entrypoint (unblocks hermes-agent publish) (#46)
`make agent-image-relock` (and the new CI relock workflow) failed with
`error: unrecognized subcommand 'sh'`. The `ghcr.io/astral-sh/uv` image
is distroless with `uv` as its entrypoint, so `docker run … uv:0.5.0 sh
-c "uv lock"` passes `sh` to `uv` as a subcommand — and there's no shell
in the image to fall back to. This is the root reason the lockfile was
never generated and `ghcr.io/paperclipinc/hermes-agent` was never
published.
Fix: pass `lock` directly to the uv entrypoint.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 3156e08 commit 9e456b1
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
157 | 157 | | |
158 | 158 | | |
159 | 159 | | |
160 | | - | |
| 160 | + | |
161 | 161 | | |
162 | 162 | | |
163 | 163 | | |
| |||
0 commit comments