From 8c0c7f11e6096221a1d536efdca0d2d1886fcc26 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Wed, 7 Feb 2024 02:01:20 -0500 Subject: [PATCH] Add rcon to wine images (#221) This adds the rcon cli to the wine images --- wine/devel/Dockerfile | 5 +++++ wine/latest/Dockerfile | 5 +++++ wine/staging/Dockerfile | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/wine/devel/Dockerfile b/wine/devel/Dockerfile index 115d377..f31e43a 100644 --- a/wine/devel/Dockerfile +++ b/wine/devel/Dockerfile @@ -11,6 +11,11 @@ RUN dpkg --add-architecture i386 \ && apt update -y \ && apt install -y --no-install-recommends gnupg2 numactl tzdata software-properties-common libntlm0 winbind xvfb xauth python3 libncurses5:i386 libncurses6:i386 libsdl2-2.0-0 libsdl2-2.0-0:i386 +RUN cd /tmp/ \ + && curl -sSL https://github.com/gorcon/rcon-cli/releases/download/v0.10.3/rcon-0.10.3-amd64_linux.tar.gz > rcon.tar.gz \ + && tar xvf rcon.tar.gz \ + && mv rcon-0.10.3-amd64_linux/rcon /usr/local/bin/ + # Install wine and with recommends RUN mkdir -pm755 /etc/apt/keyrings RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key diff --git a/wine/latest/Dockerfile b/wine/latest/Dockerfile index 2a1fa6b..b1b0a6d 100644 --- a/wine/latest/Dockerfile +++ b/wine/latest/Dockerfile @@ -11,6 +11,11 @@ RUN dpkg --add-architecture i386 \ && apt update -y \ && apt install -y --no-install-recommends gnupg2 numactl tzdata software-properties-common libntlm0 winbind xvfb xauth python3 libncurses5:i386 libncurses6:i386 libsdl2-2.0-0 libsdl2-2.0-0:i386 +RUN cd /tmp/ \ + && curl -sSL https://github.com/gorcon/rcon-cli/releases/download/v0.10.3/rcon-0.10.3-amd64_linux.tar.gz > rcon.tar.gz \ + && tar xvf rcon.tar.gz \ + && mv rcon-0.10.3-amd64_linux/rcon /usr/local/bin/ + # Install wine and with recommends RUN mkdir -pm755 /etc/apt/keyrings RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key diff --git a/wine/staging/Dockerfile b/wine/staging/Dockerfile index 01858cb..0530ac0 100644 --- a/wine/staging/Dockerfile +++ b/wine/staging/Dockerfile @@ -11,6 +11,11 @@ RUN dpkg --add-architecture i386 \ && apt update -y \ && apt install -y --no-install-recommends gnupg2 numactl tzdata software-properties-common libntlm0 winbind xvfb xauth python3 libncurses5:i386 libncurses6:i386 libsdl2-2.0-0 libsdl2-2.0-0:i386 +RUN cd /tmp/ \ + && curl -sSL https://github.com/gorcon/rcon-cli/releases/download/v0.10.3/rcon-0.10.3-amd64_linux.tar.gz > rcon.tar.gz \ + && tar xvf rcon.tar.gz \ + && mv rcon-0.10.3-amd64_linux/rcon /usr/local/bin/ + # Install wine and with recommends RUN mkdir -pm755 /etc/apt/keyrings RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key