Getting ready to setup automated build pipeline

This commit is contained in:
BuildTools 2023-09-12 09:23:59 -04:00
parent b9e5aace50
commit 2478a5d1cc
2 changed files with 3 additions and 4 deletions

View file

@ -6,8 +6,7 @@ RUN apk add curl jq
LABEL Marc Tönsing <marc@marc.tv>
ARG version=1.19
ARG version=1.19.3
########################################################
############## Download Paper with API #################
@ -32,7 +31,7 @@ WORKDIR /data
COPY --from=build /opt/minecraft/paperclip.jar /opt/minecraft/paperspigot.jar
# Install and run rcon
ARG RCON_CLI_VER=1.4.8
ARG RCON_CLI_VER=1.6.1
ADD https://github.com/itzg/rcon-cli/releases/download/${RCON_CLI_VER}/rcon-cli_${RCON_CLI_VER}_linux_amd64.tar.gz /tmp/rcon-cli.tgz
RUN tar -x -C /usr/local/bin -f /tmp/rcon-cli.tgz rcon-cli && \
rm /tmp/rcon-cli.tgz