Dockerfile created

This commit is contained in:
Philipp 2022-04-20 23:33:39 +02:00
parent f017d37f78
commit d915b69fa6
Signed by: Gitea
GPG Key ID: 5A09F9506519E10A
1 changed files with 33 additions and 0 deletions

33
Dockerfile Normal file
View File

@ -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"]