initial commit

This commit is contained in:
2025-08-02 01:40:15 +02:00
commit 17974b614e
5 changed files with 78 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM debian:bookworm-slim
RUN apt update && apt install -y curl unzip liblua5.3-0
WORKDIR /opt/beammp-server
RUN curl -L -o BeamMP-Server https://github.com/BeamMP/BeamMP-Server/releases/download/v3.8.5/BeamMP-Server.debian.12.x86_64 \
&& chmod +x BeamMP-Server
# Optional: COPY config und resources
# COPY config /opt/beammp-server/config
# COPY resources /opt/beammp-server/resources
EXPOSE 30814/udp
EXPOSE 30814/tcp
CMD ["./BeamMP-Server"]