Skip to content

Commit

Permalink
fix(bluefin-cli): Make sure /usr/bin/sh exists (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles authored Jan 3, 2024
1 parent dae9abe commit 3d0b059
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion toolboxes/Containerfile.bluefin-cli
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 3d0b059

Please sign in to comment.