tf2-casual/Dockerfile

37 lines
2.3 KiB
Docker
Raw Normal View History

2023-03-20 13:43:11 +01:00
FROM ghcr.io/melkortf/tf2-sourcemod:latest
2022-10-09 15:24:47 +02:00
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 \
2024-04-19 14:59:35 +02:00
# && wget -nv "https://github.com/sapphonie/StAC-tf2/releases/download/v6.1.1/stac.zip" -O stac.zip \
2023-10-11 08:06:06 +02:00
&& wget -nv "https://github.com/sapphonie/sourcemod-nativevotes-updated/releases/download/workflow-build59/nativevotes_sm_1.11.zip" -O nativevotes.zip \
2022-10-09 15:24:47 +02:00
&& 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 \
&& wget -nv "https://gitlab.com/Zipcore/Discord/-/raw/master/plugins/discord_sourcebans.smx" -O discord_sourcebans.smx \
&& wget -nv "https://gitlab.com/Zipcore/Discord/-/raw/master/plugins/discord_sourcecomms.smx" -O discord_sourcecomms.smx \
&& wget -nv "https://forums.alliedmods.net/attachment.php?attachmentid=83286&d=1299423920" -O socket.zip \
2023-10-11 08:06:06 +02:00
&& wget -nv "https://github.com/ldesgoui/tf2-comp-fixes/releases/download/v1.16.13/tf2-comp-fixes.zip" -O tf2-comp-fixes.zip \
&& wget -nv "https://github.com/sbpp/sourcebans-pp/releases/download/1.7.0/sourcebans-pp-1.7.0.plugins-only.zip" -O sourcebans.zip \
2022-10-09 15:24:47 +02:00
# install plugins
&& unzip -o system2.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \
2024-04-19 14:59:35 +02:00
# && unzip -o stac.zip -d "${SERVER_DIR}/tf/addons/sourcemod/" \
2022-10-09 15:24:47 +02:00
&& 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" \
&& mv discord_sourcebans.smx "${SERVER_DIR}/tf/addons/sourcemod/plugins/discord_sourcebans.smx" \
&& mv discord_sourcecomms.smx "${SERVER_DIR}/tf/addons/sourcemod/plugins/discord_sourcecomms.smx" \
&& unzip -o socket.zip -d "${SERVER_DIR}/tf/" \
&& unzip -o tf2-comp-fixes.zip -d "${SERVER_DIR}/tf/" \
&& unzip -o sourcebans.zip -d "${SERVER_DIR}/tf/" \
# cleanup
2024-04-19 14:59:35 +02:00
&& rm system2.zip nativevotes.zip SteamWorks.tar.gz socket.zip tf2-comp-fixes.zip sourcebans.zip \
2022-10-09 15:24:47 +02:00
&& rm "${SERVER_DIR}/tf/addons/sourcemod/plugins/admin-flatfile.smx"
COPY server.cfg.template "${SERVER_DIR}/tf/cfg/server.cfg.template"
COPY motd.txt "${SERVER_DIR}/tf/cfg/motd.txt"
CMD ["+sv_pure", "2", "+map", "pl_upward", "+maxplayers", "24"]