From d915b69fa6801075d49183432538b31d3a441e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20B=C3=B6hm?= Date: Wed, 20 Apr 2022 23:33:39 +0200 Subject: [PATCH] Dockerfile created --- Dockerfile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8964e7d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,33 @@ +FROM melkortf/tf2-dm:latest +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/v5.2.2/stac.zip" -O stac.zip \ + && wget -nv "https://github.com/sapphonie/sourcemod-nativevotes-updated/releases/download/workflow-build10/nativevotes.zip" -O nativevotes.zip \ + && wget -nv "https://github.com/ErikMinekus/sm-advertisements/releases/download/2.1.1/release.tar.gz" -O advertisements.tar.gz \ + && 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/-/archive/master/Discord-master.zip" -O discord.zip \ + && wget -nv "https://github.com/eaasye/soapbalancer/raw/master/soapbalancer.smx" -O soapbalancer.smx \ + && wget -nv "https://forums.alliedmods.net/attachment.php?attachmentid=83286&d=1299423920" -O socket.zip \ + # install plugins + && unzip -o system2.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 advertisements.tar.gz -C "${SERVER_DIR}/tf/" \ + && tar -xf SteamWorks.tar.gz -d "${SERVER_DIR}/tf/" \ + && unzip -o discord.zip -d "{$SERVER_DIR}/tf/addons/" \ + && mv soapbalancer.smx "{$SERVER_DIR}/tf/addons/sourcemod/plugins/soapbalancer.smx" \ + && unzip -o socket.zip -d "${SERVER_DIR}/tf/" \ + # move correct plugins from disabled folder + && mv "${SERVER_DIR}/tf/addons/sourcemod/plugins/disabled/{admin-sql-threaded.smx,sql-admin-manager.smx}" "${SERVER_DIR}/tf/addons/sourcemod/plugins/" \ + # clean everything up + && rm system2.zip stac.zip nativevotes.zip advertisements.tar.gz SteamWorks.tar.gz discord.zip socket.zip \ + && rm "${SERVER_DIR}/tf/addons/sourcemod/plugins/admin-flatfile.smx + +COPY server.cfg.template "${SERVER_DIR}/tf/cfg/server.cfg.template" +COPY mapcycle.txt "${SERVER_DIR}/tf/cfg/mapcycle.txt" +COPY motd.txt "${SERVER_DIR}/tf/cfg/motd.txt" + +CMD ["+sv_pure", "2", "+map", "cp_snakewater_final1", "+maxplayers", "8"] \ No newline at end of file