diff --git a/toolbx/Dockerfile b/toolbx/Dockerfile
index f15c51664206de677e3ca2beed461781fce2fd52..db08e380b9e50b7c91a006f67c024eb938890814 100644
--- a/toolbx/Dockerfile
+++ b/toolbx/Dockerfile
@@ -1,4 +1,8 @@
+FROM docker.io/golang:1.20 as golang
+RUN go install github.com/1player/host-spawn@1.4.1
+
 FROM docker.io/debian:testing-backports
+COPY --from=golang /go/bin/host-spawn /usr/local/bin/host-spawn
 SHELL ["/bin/bash", "-o", "pipefail", "-xc"]
 ADD [ "https://www.shore.co.il/blog/static/runas", "/usr/local/sbin/runas" ]
 # hadolint ignore=DL3008