diff --git a/containers/fedora-toolbox/base-gui.Dockerfile b/containers/fedora-toolbox/base-gui.Dockerfile index d111235..ac0f8fd 100644 --- a/containers/fedora-toolbox/base-gui.Dockerfile +++ b/containers/fedora-toolbox/base-gui.Dockerfile @@ -23,3 +23,6 @@ RUN dnf install -y qt5-qtwayland qt6-qtwayland # Link xdg-open to host in order to be able to open links etc. RUN rm -f /usr/bin/xdg-open && ln -s /usr/bin/distrobox-host-exec /usr/bin/xdg-open + +# Install host-spawn +RUN wget https://github.com/1player/host-spawn/releases/download/1.5.0/host-spawn-x86_64 -O /usr/bin/host-spawn && chmod +x /usr/bin/host-spawn diff --git a/containers/ubuntu/base-gui.Dockerfile b/containers/ubuntu/base-gui.Dockerfile index ec539e6..87a4d3c 100644 --- a/containers/ubuntu/base-gui.Dockerfile +++ b/containers/ubuntu/base-gui.Dockerfile @@ -9,5 +9,7 @@ RUN apt install -y libasound2 libgles2 # Link xdg-open to host in order to be able to open links etc. RUN rm -f /usr/bin/xdg-open && ln -s /usr/bin/distrobox-host-exec /usr/bin/xdg-open +# Install host-spawn +RUN wget https://github.com/1player/host-spawn/releases/download/1.5.0/host-spawn-x86_64 -O /usr/bin/host-spawn && chmod +x /usr/bin/host-spawn RUN apt clean