From 3fa2c013e844794dc0fe458bc199cd74ceb6df25 Mon Sep 17 00:00:00 2001 From: TheiLLeniumStudios <104288623+TheiLLeniumStudios@users.noreply.github.com> Date: Mon, 6 Feb 2023 15:01:34 +0000 Subject: [PATCH] Update --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 37c88d5..ef3ffce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ # Container image that runs your code FROM alpine:3.17 -RUN apk add --no-cache curl tar git - # Use icecon instead. For some reason rcon-cli doesn't send a valid command #ARG RCON_VERSION="0.10.2" # @@ -13,8 +11,8 @@ RUN apk add --no-cache curl tar git ARG ICECON_VERSION="v1.0.0" -RUN curl -LO https://github.com/icedream/icecon/releases/download/${ICECON_VERSION}/icecon_linux_amd64 && \ - mv icecon_linux_amd64 /usr/local/bin/icecon && \ +RUN wget https://github.com/icedream/icecon/releases/download/${ICECON_VERSION}/icecon_linux_i386 && \ + mv icecon_linux_i386 /usr/local/bin/icecon && \ chmod +x /usr/local/bin/icecon # Copies your code file from your action repository to the filesystem path `/` of the container