From 3ac666e33d96011deeab33a5c4a4de8658e5fe52 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Fri, 10 Jan 2025 19:03:52 -0500 Subject: [PATCH] Making a change to try to solve the 'no data folder found' issue --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7eff271..df9fb83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,15 +18,14 @@ RUN curl -fsSL "${XRC_DL_URL}" -o /tmp/xrc.zip \ && find /home/xrc -exec chown xrc:xrc {} \; \ && find /home/xrc -type d -exec chmod 750 {} \; \ && find /home/xrc -type f -exec chmod 640 {} \; \ - && chmod 750 "/home/xrc/xrc/xRC Simulator.x86_64" \ - && mv "/home/xrc/xrc/xRC Simulator.x86_64" "/home/xrc/xrc/xrc" + && chmod 750 "/home/xrc/xrc/xRC Simulator.x86_64" EXPOSE 11115 USER xrc ENV USER=xrc WORKDIR /home/xrc/xrc -ENTRYPOINT ./xrc -batchmode -nographics RouterPort=11115 Port=11115 game=${GAME:-19} \ +ENTRYPOINT "./xRC Simulator.x86_64" -batchmode -nographics RouterPort=11115 Port=11115 game=${GAME:-19} \ FrameRate=${FRAMERATE:-60} tmode=${TMODE:-"On"} register=${REGISTER:-"Off"} \ Spectators=${SPECTATORS:-2} minplayers=${MINPLAYERS:-2} updatetime=${UPDATETIME:-25} \ maxdata=${MAXDATA:-99000} startwhenready=${STARTWHENREADY:-"On"} comment=${COMMENT:-"REEFSCAPE"} \