Skip to content

Commit

Permalink
chore: fix keepup command
Browse files Browse the repository at this point in the history
  • Loading branch information
DevScyu committed Nov 16, 2024
1 parent 1db9d39 commit 50df36c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check warning on line 14 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker push for

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 14 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker push for

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
LABEL org.opencontainers.image.authors="Offz <[email protected]>"
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\
Expand Down Expand Up @@ -43,7 +44,8 @@ FROM itzg/bungeecord as proxy
LABEL org.opencontainers.image.authors="Offz <[email protected]>"
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\
Expand Down

0 comments on commit 50df36c

Please sign in to comment.