From 21ce518f6d6aab5c8d8a6a57bffbc60ec84a4243 Mon Sep 17 00:00:00 2001 From: Anders Rytter Hansen Date: Wed, 15 Nov 2023 15:04:13 +0100 Subject: [PATCH] Install host-spawn --- containers/fedora-toolbox/base-gui.Dockerfile | 3 +++ containers/ubuntu/base-gui.Dockerfile | 2 ++ 2 files changed, 5 insertions(+) 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