From 50df36cb17985de300452778020013b1f1c1dce8 Mon Sep 17 00:00:00 2001 From: Scyu_ Date: Sat, 16 Nov 2024 14:19:49 +0000 Subject: [PATCH] chore: fix keepup command --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4c53adf..c96fba9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,8 @@ RUN wget -nv -q -O keepup https://github.com/MineInAbyss/Keepup/releases/downloa FROM itzg/minecraft-server:java21-graalvm as minecraft LABEL org.opencontainers.image.authors="Offz " RUN dnf install -y ansible-core rclone wget unzip jq openssh attr -COPY --from=helper /keepup /usr/local +COPY --from=helper /keepup /usr/local/bin +RUN chmod +x /usr/local/bin/keepup ENV\ KEEPUP=true\ KEEPUP_ALLOW_OVERRIDES=true\ @@ -43,7 +44,8 @@ FROM itzg/bungeecord as proxy LABEL org.opencontainers.image.authors="Offz " RUN apt-get update -y \ && apt-get install -y rsync rclone wget unzip git pipx python3-venv jq file -COPY --from=helper /keepup /usr/local +COPY --from=helper /keepup /usr/local/bin +RUN chmod +x /usr/local/bin/keepup ENV\ KEEPUP=true\ KEEPUP_ALLOW_OVERRIDES=true\