This commit is contained in:
2025-07-04 15:24:30 -07:00
parent 8ba6ffc11c
commit 2d77d3d21d

View File

@@ -7,7 +7,7 @@ ENV VS_VERSION=""
ENV USERNAME=""
# URL's for files
ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/vintage-story/refs/heads/main/vanilla/install_script.sh
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/vintage-story/raw/branch/main/vanilla/install_script.sh
# Install Dependencies.
RUN apt-get -y update && apt-get autoclean && apt-get autoremove \
@@ -24,8 +24,9 @@ RUN apt-get -y update && apt-get autoclean && apt-get autoremove \
RUN mkdir -p /VSserver /VSserver/server /VSserver/data /VStemp /VStemp/files \
&& chmod 777 -R /VSserver /VStemp \
&& chown 99:100 -R /VSserver /VStemp
ADD "$INSTALL_SCRIPT" /VStemp
RUN chmod +x /VStemp/install_script.sh
RUN wget --no-cache "$INSTALL_SCRIPT" -O /VStemp/install_script.sh \
&& chmod +x /VStemp/install_script.sh
# Directory where data is stored
VOLUME /VSserver