Replace rcon client.

Replace [itzg/rcon-cli](https://github.com/itzg/rcon-cli) with
[gorcon/rcon-cli](https://github.com/gorcon/rcon-cli).
This commit is contained in:
Odaka Ui
2024-01-26 11:45:10 -08:00
parent 4ba38be206
commit 4bf5070486

View File

@@ -9,8 +9,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN wget -q https://github.com/itzg/rcon-cli/releases/download/1.6.4/rcon-cli_1.6.4_linux_amd64.tar.gz -O - | tar -xz && \
mv rcon-cli /usr/bin/rcon-cli
RUN wget -q https://github.com/gorcon/rcon-cli/releases/download/v0.10.3/rcon-0.10.3-amd64_linux.tar.gz -O - | tar -xz && \
mv rcon-0.10.3-amd64_linux/rcon /usr/bin/rcon-cli
ENV PORT= \
PUID=1000 \