Skip to content

Commit fa948e5

Browse files
authored
fix(docker): update CMD in all agent Dockerfiles to use -c flag (#545)
Follow-up to #544 — the default Dockerfile was fixed but the 6 agent-specific Dockerfiles (claude, codex, copilot, cursor, gemini, opencode) still use the old positional arg, breaking container deployments on 0.8.1-beta.4. Co-authored-by: chaodu-agent <chaodu-agent@users.noreply.github.com>
1 parent dbb769b commit fa948e5

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile.claude

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ USER node
3535
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
3636
CMD pgrep -x openab || exit 1
3737
ENTRYPOINT ["tini", "--"]
38-
CMD ["openab", "run", "/etc/openab/config.toml"]
38+
CMD ["openab", "run", "-c", "/etc/openab/config.toml"]

Dockerfile.codex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ USER node
3232
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
3333
CMD pgrep -x openab || exit 1
3434
ENTRYPOINT ["tini", "--"]
35-
CMD ["openab", "run", "/etc/openab/config.toml"]
35+
CMD ["openab", "run", "-c", "/etc/openab/config.toml"]

Dockerfile.copilot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ USER node
3131
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
3232
CMD pgrep -x openab || exit 1
3333
ENTRYPOINT ["tini", "--"]
34-
CMD ["openab", "run", "/etc/openab/config.toml"]
34+
CMD ["openab", "run", "-c", "/etc/openab/config.toml"]

Dockerfile.cursor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ USER agent
4343
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
4444
CMD pgrep -x openab || exit 1
4545
ENTRYPOINT ["tini", "--"]
46-
CMD ["openab", "run", "/etc/openab/config.toml"]
46+
CMD ["openab", "run", "-c", "/etc/openab/config.toml"]

Dockerfile.gemini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ USER node
3131
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
3232
CMD pgrep -x openab || exit 1
3333
ENTRYPOINT ["tini", "--"]
34-
CMD ["openab", "run", "/etc/openab/config.toml"]
34+
CMD ["openab", "run", "-c", "/etc/openab/config.toml"]
3535

Dockerfile.opencode

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ USER node
4646
HEALTHCHECK --interval=30s --timeout=5s --retries=3 \
4747
CMD pgrep -x openab || exit 1
4848
ENTRYPOINT ["tini", "--"]
49-
CMD ["openab", "run", "/etc/openab/config.toml"]
49+
CMD ["openab", "run", "-c", "/etc/openab/config.toml"]

0 commit comments

Comments
 (0)