Skip to content

Commit

Permalink
Install ansible via pipx to get latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
0ffz committed Aug 23, 2023
1 parent e84f8d5 commit f494260
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions minecraft.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ FROM itzg/minecraft-server:java17-jdk
LABEL org.opencontainers.image.authors="Offz <offz@mineinabyss.com>"

RUN apt-get update -y \
&& apt-get install -y rclone wget unzip ansible
&& apt-get install -y rclone wget unzip pipx python3-venv

RUN pipx install --include-deps ansible

ENV PATH="$PATH:/root/.local/bin"

ARG KEEPUP_VERSION=1.1.0

Expand Down Expand Up @@ -36,4 +40,4 @@ RUN chmod +x /scripts/dev/*

WORKDIR $HOME

ENTRYPOINT ["/scripts/dev/entrypoint"]
CMD ["/scripts/dev/entrypoint"]
6 changes: 5 additions & 1 deletion proxy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ FROM itzg/bungeecord
LABEL org.opencontainers.image.authors="Offz <offz@mineinabyss.com>"

RUN apt-get update -y \
&& apt-get install -y rsync rclone wget unzip ansible git
&& apt-get install -y rsync rclone wget unzip git pipx python3-venv

RUN pipx install --include-deps ansible

ENV PATH="$PATH:/root/.local/bin"

ARG KEEPUP_VERSION=1.1.0

Expand Down

0 comments on commit f494260

Please sign in to comment.