From 73b93b242baeaaaffe278ec65c477564e2aa138a Mon Sep 17 00:00:00 2001 From: fithwum Date: Fri, 4 Jul 2025 15:22:56 -0700 Subject: [PATCH] update --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f264ee1..7c2f6b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ENV GAME_PORT_2="" ENV GAME_PORT_3="" # URL's for files -ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/veloren/refs/heads/main/files/install_script.sh +ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/veloren/raw/branch/main/files/install_script.sh # Install java-17 & Dependencies. RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ @@ -21,8 +21,9 @@ RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ RUN mkdir -p /veloren /veloren-temp \ && chmod 777 -R /veloren /veloren-temp \ && chown 99:100 -R /veloren /veloren-temp -ADD "$INSTALL_SCRIPT" /veloren -RUN chmod +x /veloren-temp/install_script.sh + +RUN wget --no-cache "$INSTALL_SCRIPT" -O /veloren-temp/install_script.sh \ + && chmod +x /veloren-temp/install_script.sh # Directory where data is stored VOLUME /veloren