~ try with lgsm
This commit is contained in:
38
Dockerfile
38
Dockerfile
@ -8,24 +8,46 @@ ENV STEAM_PATH="/home/steam" \
|
||||
USER_ID=10000 \
|
||||
DOCKER_USER=steam \
|
||||
\
|
||||
DEBIAN_FRONTEND="noninteractive"
|
||||
WORKSHOP_COLLECTION_ID= \
|
||||
INSTALL_CSS=false \
|
||||
INSTALL_HL2=false \
|
||||
INSTALL_HLDM=false \
|
||||
INSTALL_TF2=false \
|
||||
\
|
||||
CSS_PATH="/home/steam/addons/css" \
|
||||
HL2_PATH="/home/steam/addons/hl2" \
|
||||
HLDM_PATH="/home/steam/addons/hldm" \
|
||||
TF2_PATH="/home/steam/addons/tf2" \
|
||||
\
|
||||
USE_MY_REPLACER_CONFIG=false
|
||||
|
||||
ENTRYPOINT ["./home/entrypoint.sh"]
|
||||
CMD ["-game", "garrysmod", "+gamemode", "sandbox", "+map", "gm_flatgrass"]
|
||||
|
||||
COPY ["entrypoint.sh", "/home/"]
|
||||
|
||||
# removed dep. lib32gcc1 libtcmalloc-minimal4:i386 gdb libreadline5
|
||||
# removed dep. lib32gcc1 libtcmalloc-minimal4:i386 gdb
|
||||
RUN dpkg --add-architecture i386 && \
|
||||
apt-get update -y && \
|
||||
apt-get install -y mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386 lib32tinfo5 && \
|
||||
locales \
|
||||
apt-get install -y mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386 lib32tinfo5 \
|
||||
locales && \
|
||||
\
|
||||
groupadd -g $GROUP_ID $DOCKER_USER && \
|
||||
useradd -d /home/steam/ -g $GROUP_ID -u $USER_ID -m $DOCKER_USER && \
|
||||
chown "$DOCKER_USER:$DOCKER_USER" /home/entrypoint.sh && \
|
||||
mkdir -p "$SERVER_PATH" && \
|
||||
chown -R "$DOCKER_USER:$DOCKER_USER" "$STEAM_PATH" && \
|
||||
chmod a=rx /home/entrypoint.sh && \
|
||||
chmod a=rx /home/installAndMountAddons.sh && \
|
||||
chmod a=rx /home/forceWorkshopDownload.sh && \
|
||||
chmod a=rx /home/experimental.sh && \
|
||||
ulimit -n 2048 && \
|
||||
\
|
||||
locale-gen en_US.UTF-8 && \
|
||||
wget -O linuxgsm.sh https://linuxgsm.sh && chmod +x linuxgsm.sh && bash linuxgsm.sh gmodserver
|
||||
\
|
||||
su -u "$DOCKER_USER" wget -O linuxgsm.sh https://linuxgsm.sh && \
|
||||
su -u "$DOCKER_USER" chmod +x linuxgsm.sh && \
|
||||
su -u "$DOCKER_USER" bash linuxgsm.sh gmodserver
|
||||
|
||||
USER "root:root"
|
||||
USER "$USER_ID:$GROUP_ID"
|
||||
|
||||
VOLUME "$SERVER_PATH"
|
||||
VOLUME "$SERVER_PATH"
|
||||
|
Reference in New Issue
Block a user