From 4f6edd14f407c50653f78ed3059d20a81e564120 Mon Sep 17 00:00:00 2001 From: casjay Date: Wed, 6 May 2026 06:48:10 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20local=20settings=20and?= =?UTF-8?q?=20Dockerfile=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Adjusted .claude/settings.local.json with updated local configuration - Modified Dockerfile to refine build steps and image setup .claude/settings.local.json Dockerfile --- .claude/settings.local.json | 3 ++- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 5a6496d..375c766 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -24,7 +24,8 @@ "Read(//etc/docker/**)", "Bash(python3 -c 'import json; json.load\\(open\\(\"/etc/docker/daemon.json\"\\)\\); print\\(\"OK\"\\)')", "Bash(python3 -m json.tool)", - "Read(//root/.local/log/buildx/docker.io/casjaysdevdocker/bind/**)" + "Read(//root/.local/log/buildx/docker.io/casjaysdevdocker/bind/**)", + "Bash(bash /root/.config/myscripts/buildx/scripts/casjaysdevdocker/bind-latest.sh)" ] } } diff --git a/Dockerfile b/Dockerfile index b57a66a..cc5ae42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -81,7 +81,7 @@ RUN set -e; \ BASH_CMD="$(which bash 2>/dev/null||command -v bash 2>/dev/null)"; \ [ -x "$BASH_CMD" ] && symlink "$BASH_CMD" "/bin/sh" || true; \ [ -x "$BASH_CMD" ] && symlink "$BASH_CMD" "/usr/bin/sh" || true; \ - [ -x "$BASH_CMD" ] && [ "$SH_CMD" != "/bin/sh"] && symlink "$BASH_CMD" "$SH_CMD" || true; \ + [ -x "$BASH_CMD" ] && [ "$SH_CMD" != "/bin/sh" ] && symlink "$BASH_CMD" "$SH_CMD" || true; \ [ -n "$BASH_CMD" ] && sed -i 's|root:x:.*|root:x:0:0:root:/root:'$BASH_CMD'|g' "/etc/passwd" || true ENV SHELL="/bin/bash"