From 5bd6287f527426215601799a1ab0c5c444292dae Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sun, 10 Aug 2025 09:05:10 -0500 Subject: [PATCH] misc: refactored bin content into files/shims (#3607) --- Dockerfile | 3 +-- {bin => files/shims}/mc-health | 0 {bin => files/shims}/mc-send-to-console | 0 {bin => files/shims}/mcstatus | 0 {bin => files/shims}/rcon-cmds-daemon.sh | 0 5 files changed, 1 insertion(+), 2 deletions(-) rename {bin => files/shims}/mc-health (100%) mode change 100755 => 100644 rename {bin => files/shims}/mc-send-to-console (100%) mode change 100755 => 100644 rename {bin => files/shims}/mcstatus (100%) mode change 100755 => 100644 rename {bin => files/shims}/rcon-cmds-daemon.sh (100%) diff --git a/Dockerfile b/Dockerfile index 205e319c..8383b5b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,8 +65,7 @@ STOPSIGNAL SIGTERM ENV TYPE=VANILLA VERSION=LATEST EULA="" UID=1000 GID=1000 LC_ALL=en_US.UTF-8 COPY --chmod=755 scripts/start* / -COPY --chmod=755 bin/ /usr/local/bin/ -COPY --chmod=755 bin/mc-health /health.sh +COPY --chmod=755 files/shims/ /usr/local/bin/ COPY --chmod=755 files/* /image/ COPY --chmod=755 files/auto /auto diff --git a/bin/mc-health b/files/shims/mc-health old mode 100755 new mode 100644 similarity index 100% rename from bin/mc-health rename to files/shims/mc-health diff --git a/bin/mc-send-to-console b/files/shims/mc-send-to-console old mode 100755 new mode 100644 similarity index 100% rename from bin/mc-send-to-console rename to files/shims/mc-send-to-console diff --git a/bin/mcstatus b/files/shims/mcstatus old mode 100755 new mode 100644 similarity index 100% rename from bin/mcstatus rename to files/shims/mcstatus diff --git a/bin/rcon-cmds-daemon.sh b/files/shims/rcon-cmds-daemon.sh similarity index 100% rename from bin/rcon-cmds-daemon.sh rename to files/shims/rcon-cmds-daemon.sh