Skip to content

Commit e2e9833

Browse files
brettchienthepagent
authored andcommitted
fix(docker): add procps to Dockerfile.cursor for pgrep healthcheck
HEALTHCHECK uses `pgrep -x openab`, which requires procps. Debian slim does not ship with it, so the healthcheck was silently failing (command not found) and the pod would enter Unhealthy state. Same fix pattern as pending PR #234 for the other Dockerfiles. Addresses review comment on PR #301 from @masami-agent.
1 parent 59657ed commit e2e9833

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile.cursor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN touch src/main.rs && cargo build --release
88

99
# --- Runtime stage ---
1010
FROM debian:bookworm-slim
11-
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && rm -rf /var/lib/apt/lists/*
11+
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl procps && rm -rf /var/lib/apt/lists/*
1212

1313
# Install Cursor Agent CLI (pinned version)
1414
ARG CURSOR_VERSION=2026.04.08-a41fba1

0 commit comments

Comments
 (0)