From 845d4490b0283b05c67ec3397d193b721f00079d Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 28 Dec 2024 00:30:18 +0200 Subject: [PATCH] toolbx: Remove the SHELL instruction. There aren't any more pipes in the Dockerfile so it's not needed and it's ignored by Podman. --- toolbx/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/toolbx/Dockerfile b/toolbx/Dockerfile index 390ec4c..a8ce457 100644 --- a/toolbx/Dockerfile +++ b/toolbx/Dockerfile @@ -3,7 +3,6 @@ RUN go install github.com/1player/host-spawn@v1.6.0 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" ] COPY --chown=root:root .curlrc /root/ # hadolint ignore=DL3008 -- GitLab