Dockerfile aktualisiert

This commit is contained in:
2024-07-29 22:30:20 +02:00
parent 953819cc10
commit 1256e24f43

View File

@@ -4,12 +4,18 @@ LABEL org.opencontainers.image.authors="admin@minenet.at"
LABEL org.opencontainers.image.source="https://github.com/ich777/docker-beamng-mp-server" LABEL org.opencontainers.image.source="https://github.com/ich777/docker-beamng-mp-server"
RUN apt-get update && \ RUN apt-get update && \
apt-get -y install --no-install-recommends liblua5.3-0 libcurl4 jq && \ apt-get -y install --no-install-recommends liblua5.3-0 libcurl4 jq tmux && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
RUN wget -O /tmp/gotty.tar.gz https://github.com/yudai/gotty/releases/download/v1.0.1/gotty_linux_amd64.tar.gz && \
tar -C /usr/bin/ -xvf /tmp/gotty.tar.gz && \
rm -rf /tmp/gotty.tar.gz
ENV DATA_DIR="/beamngmp" ENV DATA_DIR="/beamngmp"
ENV GAME_PARAMS="" ENV GAME_PARAMS=""
ENV PRERELEASE="false" ENV PRERELEASE="false"
ENV ENABLE_WEBCONSOLE="true"
ENV GOTTY_PARAMS="-w --title-format BeamNG-MP"
ENV UMASK=000 ENV UMASK=000
ENV UID=99 ENV UID=99
ENV GID=100 ENV GID=100