Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile.claude
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ WORKDIR /home/node

COPY --from=builder --chown=node:node /build/target/release/openab /usr/local/bin/openab

RUN mkdir -p /home/node/.claude && chown -R node:node /home/node/.claude

USER node
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD pgrep -x openab || exit 1
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.codex
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ WORKDIR /home/node

COPY --from=builder --chown=node:node /build/target/release/openab /usr/local/bin/openab

RUN mkdir -p /home/node/.codex && chown -R node:node /home/node/.codex

USER node
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD pgrep -x openab || exit 1
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.copilot
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ WORKDIR /home/node

COPY --from=builder --chown=node:node /build/target/release/openab /usr/local/bin/openab

RUN mkdir -p /home/node/.copilot && chown -R node:node /home/node/.copilot

USER node
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD pgrep -x openab || exit 1
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.cursor
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ WORKDIR /home/agent

COPY --from=builder --chown=agent:agent /build/target/release/openab /usr/local/bin/openab

RUN mkdir -p /home/agent/.cursor && chown -R agent:agent /home/agent/.cursor

USER agent
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD pgrep -x openab || exit 1
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.opencode
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ WORKDIR /home/node

COPY --from=builder --chown=node:node /build/target/release/openab /usr/local/bin/openab

RUN mkdir -p /home/node/.opencode && chown -R node:node /home/node/.opencode

USER node
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
CMD pgrep -x openab || exit 1
Expand Down
Loading