19 lines
455 B
Docker
19 lines
455 B
Docker
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"]
|
|
|