From ec4b7e674f4f65aa98a6d910909aabadc940d7b0 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 20 Apr 2026 06:26:26 -0400 Subject: [PATCH] fix(infra): use args instead of command for Temporal container The temporalio/temporal image has `temporal` as its entrypoint. Using `command` overrides the entrypoint entirely. Use `args` to pass `server start-dev` to the existing entrypoint. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/cli/infra/k8s/temporal.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/cli/infra/k8s/temporal.yaml b/apps/cli/infra/k8s/temporal.yaml index d3fa836..30eacce 100644 --- a/apps/cli/infra/k8s/temporal.yaml +++ b/apps/cli/infra/k8s/temporal.yaml @@ -29,9 +29,8 @@ spec: spec: containers: - name: temporal - image: temporalio/cli:latest - command: - - temporal + image: temporalio/temporal:latest + args: - server - start-dev - --db-filename