Install host-spawn

This commit is contained in:
Anders Rytter Hansen 2023-11-15 15:04:13 +01:00
commit 21ce518f6d
2 changed files with 5 additions and 0 deletions

View file

@ -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

View file

@ -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