From 9ddc7a0b19c25bb85d3d86a888a7a2e7f3e1781b Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 17 Mar 2024 09:37:56 +0100 Subject: [PATCH] Update Dockerfile --- scrutiny/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scrutiny/Dockerfile b/scrutiny/Dockerfile index c54406448..935dd6bf3 100644 --- a/scrutiny/Dockerfile +++ b/scrutiny/Dockerfile @@ -27,6 +27,11 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \ S6_SERVICES_GRACETIME=0 +RUN \ + if [ -d /bin ]; then cp -rn /bin/* /usr/bin/; fi && \ + rm -r /bin && \ + ln -s /usr/bin /bin + ################## # 3 Install apps # ##################