From f2bafbc1906ba25bd2a7ba82edb714156ecb2efa Mon Sep 17 00:00:00 2001 From: Agent Date: Sat, 18 Apr 2026 10:02:20 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20[nomad-step-5]=20S5-fix-1=20=E2=80=94=20?= =?UTF-8?q?chat/edge=20image=20build=20context=20should=20be=20docker//=20not=20repo=20root=20(#1004)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/disinto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/disinto b/bin/disinto index 98cb2fe..62081c5 100755 --- a/bin/disinto +++ b/bin/disinto @@ -843,10 +843,10 @@ _disinto_init_nomad() { echo "[build] [dry-run] docker build -t disinto/agents:local -f ${FACTORY_ROOT}/docker/agents/Dockerfile ${FACTORY_ROOT}" fi if echo ",$with_services," | grep -q ",chat,"; then - echo "[build] [dry-run] docker build -t disinto/chat:local -f ${FACTORY_ROOT}/docker/chat/Dockerfile ${FACTORY_ROOT}" + echo "[build] [dry-run] docker build -t disinto/chat:local -f ${FACTORY_ROOT}/docker/chat/Dockerfile ${FACTORY_ROOT}/docker/chat" fi if echo ",$with_services," | grep -q ",edge,"; then - echo "[build] [dry-run] docker build -t disinto/edge:local -f ${FACTORY_ROOT}/docker/edge/Dockerfile ${FACTORY_ROOT}" + echo "[build] [dry-run] docker build -t disinto/edge:local -f ${FACTORY_ROOT}/docker/edge/Dockerfile ${FACTORY_ROOT}/docker/edge" fi fi exit 0 @@ -950,12 +950,12 @@ _disinto_init_nomad() { if echo ",$with_services," | grep -q ",chat,"; then local tag="disinto/chat:local" echo "── Building $tag ─────────────────────────────" - docker build -t "$tag" -f "${FACTORY_ROOT}/docker/chat/Dockerfile" "${FACTORY_ROOT}" 2>&1 | tail -5 + docker build -t "$tag" -f "${FACTORY_ROOT}/docker/chat/Dockerfile" "${FACTORY_ROOT}/docker/chat" 2>&1 | tail -5 fi if echo ",$with_services," | grep -q ",edge,"; then local tag="disinto/edge:local" echo "── Building $tag ─────────────────────────────" - docker build -t "$tag" -f "${FACTORY_ROOT}/docker/edge/Dockerfile" "${FACTORY_ROOT}" 2>&1 | tail -5 + docker build -t "$tag" -f "${FACTORY_ROOT}/docker/edge/Dockerfile" "${FACTORY_ROOT}/docker/edge" 2>&1 | tail -5 fi fi