2
0
Fork 0

kissmp: add Containerfile

This commit is contained in:
Ducky 2022-12-18 01:10:23 +00:00
commit 322c6d07e6
2 changed files with 12 additions and 0 deletions

11
kissmp/Containerfile Normal file
View file

@ -0,0 +1,11 @@
FROM bitnami/minideb:latest
WORKDIR /app
RUN install_packages ca-certificates curl unzip
RUN curl -L https://github.com/TheHellBox/KISS-multiplayer/releases/download/0.5.0/KissMP_0_5_0.zip -o kissmp.zip
RUN unzip -p kissmp.zip KissMP_0_5_0/linux/kissmp-server > ./kissmp-server
RUN rm kissmp.zip
RUN chmod +x kissmp-server
CMD ["/app/kissmp-server"]