This commit is contained in:
Lucas Briese 2022-02-10 18:53:49 +01:00
parent 419fbeb713
commit c4cb7fe4a4
2 changed files with 11 additions and 4 deletions

View File

@ -40,8 +40,8 @@ COPY ["lgsm/entrypoint.sh", "lgsm/initCron.sh", "lgsm/createAlias.sh", "/home/"]
# iproute2 needed because of "-slim" # iproute2 needed because of "-slim"
RUN dpkg --add-architecture i386 && \ RUN dpkg --add-architecture i386 && \
apt-get update -y && \ apt-get update -y && \
apt-get install -y mailutils postfix curl wget file tar bzip2 gzip unzip bsdmainutils python util-linux ca-certificates \ apt-get install -y bc binutils bsdmainutils bzip2 ca-certificates cpio curl file gzip hostname jq lib32gcc1 lib32stdc++6 netcat python3 tar tmux unzip util-linux wget xz-utils lib32gcc1 lib32stdc++6 libsdl2-2.0-0:i386 \
binutils bc jq tmux lib32gcc1 libstdc++6 lib32stdc++6 libtinfo5:i386 netcat libsdl2-2.0-0:i386 \ libtinfo5:i386 \
procps iproute2 && \ procps iproute2 && \
\ \
groupadd -g $GROUP_ID $DOCKER_USER && \ groupadd -g $GROUP_ID $DOCKER_USER && \
@ -137,6 +137,7 @@ ENV CSS_PATH="/home/steam/addons/css" \
INSTALL_HL2=false \ INSTALL_HL2=false \
INSTALL_HLDM=false \ INSTALL_HLDM=false \
INSTALL_TF2=false \ INSTALL_TF2=false \
LGSM_UPDATE=true \
\ \
USE_MY_REPLACER_CONFIG=false USE_MY_REPLACER_CONFIG=false

View File

@ -20,7 +20,13 @@ set -e
cd "$STEAM_PATH" cd "$STEAM_PATH"
if [ -n "$SERVER_EXECUTABLE" ] && [ -e "${STEAM_PATH}/$SERVER_EXECUTABLE" ] && [ -d "$STEAM_CMD" ]; then if [ -n "$SERVER_EXECUTABLE" ] && [ -e "${STEAM_PATH}/$SERVER_EXECUTABLE" ] && [ -d "$STEAM_CMD" ]; then
echo "[entrypoint.sh]updating..." echo "[entrypoint.sh]updating..."
if "$LGSM_UPDATE"; then
./"$SERVER_EXECUTABLE" update-lgsm | (
# this sometimes prevent updating, I dont get it why this is an issue
rm -rf "${STEAM_PATH}/lgsm/functions/lgsm"
./"$SERVER_EXECUTABLE" update-lgsm ./"$SERVER_EXECUTABLE" update-lgsm
)
fi
./"$SERVER_EXECUTABLE" update ./"$SERVER_EXECUTABLE" update
else else
echo "[entrypoint.sh]installing..." echo "[entrypoint.sh]installing..."