From 7f08f94ac795fd5a29920dbb155a1cac7196b6d7 Mon Sep 17 00:00:00 2001 From: Daniel Ceregatti Date: Mon, 28 Jul 2025 15:48:11 -0600 Subject: [PATCH] Use bercon-cli instead of its predecessor. --- web/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index f9574e8..2bb7824 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -66,9 +66,9 @@ RUN groupadd -g ${USER_ID} user && \ RUN cd /usr/lib/i386-linux-gnu && ln -s /web/bin/steamservice.so # Add bercon https://github.com/WoozyMasta/bercon -RUN wget https://github.com/WoozyMasta/bercon/releases/download/1.0.0/bercon \ - && chmod +x bercon \ - && mv bercon /usr/bin +RUN wget https://github.com/WoozyMasta/bercon-cli/releases/latest/download/bercon-cli-linux-amd64 -O bercon-cli \ + && chmod +x bercon-cli \ + && mv bercon-cli /usr/bin # Use our non-privileged user USER user