From d1f43237cf436f9f01a64707d5aa68b1bba54df8 Mon Sep 17 00:00:00 2001 From: Philipp Date: Fri, 19 Apr 2024 14:59:35 +0200 Subject: [PATCH] remove StAC until fix --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 922b23a..073a54b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL maintainer="philipp@boehm.sh" RUN \ # download plugins wget -nv "https://github.com/dordnung/System2/releases/download/v3.3.2/system2.zip" -O system2.zip \ - && wget -nv "https://github.com/sapphonie/StAC-tf2/releases/download/v6.1.1/stac.zip" -O stac.zip \ + # && wget -nv "https://github.com/sapphonie/StAC-tf2/releases/download/v6.1.1/stac.zip" -O stac.zip \ && wget -nv "https://github.com/sapphonie/sourcemod-nativevotes-updated/releases/download/workflow-build59/nativevotes_sm_1.11.zip" -O nativevotes.zip \ && wget -nv "http://users.alliedmods.net/~kyles/builds/SteamWorks/SteamWorks-git132-linux.tar.gz" -O SteamWorks.tar.gz \ && wget -nv "https://gitlab.com/Zipcore/Discord/-/raw/master/plugins/discord.smx" -O discord.smx \ @@ -16,7 +16,7 @@ RUN \ # install plugins && unzip -o system2.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \ - && unzip -o stac.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \ + # && unzip -o stac.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \ && unzip -o nativevotes.zip -d "${SERVER_DIR}/tf/" \ && tar xf SteamWorks.tar.gz -C "${SERVER_DIR}/tf/" \ && mv discord.smx "${SERVER_DIR}/tf/addons/sourcemod/plugins/discord.smx" \ @@ -27,7 +27,7 @@ RUN \ && unzip -o sourcebans.zip -d "${SERVER_DIR}/tf/" \ # cleanup - && rm system2.zip stac.zip nativevotes.zip SteamWorks.tar.gz socket.zip tf2-comp-fixes.zip sourcebans.zip \ + && rm system2.zip nativevotes.zip SteamWorks.tar.gz socket.zip tf2-comp-fixes.zip sourcebans.zip \ && rm "${SERVER_DIR}/tf/addons/sourcemod/plugins/admin-flatfile.smx" COPY server.cfg.template "${SERVER_DIR}/tf/cfg/server.cfg.template"