Merge pull request #250 from pelican-eggs/dayz-rcon

dayz: fix bercon permission
This commit is contained in:
Quinten
2024-06-15 09:51:31 +02:00
committed by GitHub

View File

@@ -31,7 +31,8 @@ RUN dpkg --add-architecture i386 \
## install rcon client (bercon) ## install rcon client (bercon)
RUN cd /tmp/ \ RUN cd /tmp/ \
&& curl -sSL https://github.com/WoozyMasta/bercon/releases/download/1.0.0/bercon > bercon \ && curl -sSL https://github.com/WoozyMasta/bercon/releases/download/1.0.0/bercon > bercon \
&& mv bercon /usr/local/bin/ && mv bercon /usr/local/bin/ \
&& chmod +x /usr/local/bin/bercon
## Configure locale ## Configure locale
RUN update-locale lang=en_US.UTF-8 \ RUN update-locale lang=en_US.UTF-8 \