From b86091072ffb1d92eb2e5bae172835006f79a465 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 10 Jul 2026 11:22:43 +0200 Subject: [PATCH] Fix bash compatibility symlink --- claude_desktop/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claude_desktop/Dockerfile b/claude_desktop/Dockerfile index 770ba767ce..f46dcee1f7 100644 --- a/claude_desktop/Dockerfile +++ b/claude_desktop/Dockerfile @@ -48,7 +48,7 @@ RUN find . -type f \( -name "*.sh" -o -name "run" -o -name "finish" \) -print -e # Uses /bin for compatibility purposes # hadolint ignore=DL4005 RUN if [ ! -f /bin/sh ] && [ -f /usr/bin/sh ]; then ln -s /usr/bin/sh /bin/sh; fi && \ - if [ ! -f /bin/bash ] && [ -f /usr/bin/bash ]; then ln -s /usr/bin/sh /bin/bash; fi + if [ ! -f /bin/bash ] && [ -f /usr/bin/bash ]; then ln -s /usr/bin/bash /bin/bash; fi # Install Claude Desktop, Claude Code, browser-terminal tooling, and Python tooling RUN install -d -m 0755 /etc/apt/keyrings && \