From 3d0b059e909316d0ac4dd42f0ae14cf3576bc1ef Mon Sep 17 00:00:00 2001 From: m2Giles <69128853+m2Giles@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:07:17 -0800 Subject: [PATCH] fix(bluefin-cli): Make sure /usr/bin/sh exists (#778) --- toolboxes/Containerfile.bluefin-cli | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolboxes/Containerfile.bluefin-cli b/toolboxes/Containerfile.bluefin-cli index b9884a20a58..438f8d288d4 100644 --- a/toolboxes/Containerfile.bluefin-cli +++ b/toolboxes/Containerfile.bluefin-cli @@ -21,7 +21,8 @@ RUN git clone https://github.com/89luca89/distrobox.git --single-branch /tmp/dis cp /tmp/distrobox/distrobox-host-exec /usr/bin/distrobox-host-exec && \ wget https://github.com/1player/host-spawn/releases/download/$(cat /tmp/distrobox/distrobox-host-exec | grep host_spawn_version= | cut -d "\"" -f 2)/host-spawn-$(uname -m) -O /usr/bin/host-spawn && \ chmod +x /usr/bin/host-spawn && \ - rm -drf /tmp/distrobox + rm -drf /tmp/distrobox && \ + ln -fs /bin/sh /usr/bin/sh # Make some symlinks RUN mkdir -p /usr/local/bin && \