From 7d0a0cc021571da9a870883c28d1289c5f70e3bb Mon Sep 17 00:00:00 2001 From: fithwum Date: Tue, 10 Jun 2025 13:55:27 -0700 Subject: [PATCH] fixes --- vanilla/Dockerfile | 3 +-- vanilla/install_script.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/vanilla/Dockerfile b/vanilla/Dockerfile index 406cd3e..2c04def 100644 --- a/vanilla/Dockerfile +++ b/vanilla/Dockerfile @@ -2,13 +2,12 @@ FROM fithwum/base-image:debian-bullseye LABEL maintainer "fithwum" # Environment Variables -ENV GAME_PORT="" ENV VS_VERSION="" # URL's for files ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/vintage-story/-/raw/master/vanilla/install_script.sh -# Install java-17 & Dependencies. +# Install Dependencies. RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ && apt-get install wget pgrep screen -y \ && useradd vintagestory -s /sbin/nologin -m \ diff --git a/vanilla/install_script.sh b/vanilla/install_script.sh index 6bc7ac3..89f0c6f 100644 --- a/vanilla/install_script.sh +++ b/vanilla/install_script.sh @@ -2,7 +2,7 @@ # Copyright (c) 2022 fithwum # All rights reserved -VS_SERVER_FILE=https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_$MC_VERSION.tar.gz +VS_SERVER_FILE=https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_$VS_VERSION.tar.gz # Main install (Debian). # Check for server files and download if needed.