From 54e3868f94dc8a3fa96e3c28a404829dee7bcbc5 Mon Sep 17 00:00:00 2001 From: Hermes Date: Mon, 25 May 2026 16:21:18 -0400 Subject: [PATCH] fix_honcho_cmd_use_bash_instead_of_sh --- ai/honcho/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/honcho/Dockerfile b/ai/honcho/Dockerfile index 7951810..a0c804a 100644 --- a/ai/honcho/Dockerfile +++ b/ai/honcho/Dockerfile @@ -72,4 +72,4 @@ COPY honcho-nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 -CMD ["sh", "-c", "nginx -g 'daemon off;' & fastapi run --host 127.0.0.1 --port 8000 src/main.py & python3 -m src.deriver & wait -n"] +CMD ["bash", "-c", "nginx -g 'daemon off;' & fastapi run --host 127.0.0.1 --port 8000 src/main.py & python3 -m src.deriver & wait -n"]