From cf90958827eb695d32b51aa86631c945e0272dbc Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 20 Mar 2025 10:30:23 -0700 Subject: [PATCH] Update vintage story version --- Jenkins/Dockerfile | 2 +- LinuxGeneralCompiler/Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkins/Dockerfile b/Jenkins/Dockerfile index 57ebe1a..575de64 100644 --- a/Jenkins/Dockerfile +++ b/Jenkins/Dockerfile @@ -4,7 +4,7 @@ RUN apt-get update RUN apt-get upgrade -y RUN apt-get install -y openjdk-17-jdk openjdk-17-jre curl wget moreutils -ENV JENKINS_VERSION 2.501 +ENV JENKINS_VERSION 2.502 USER root WORKDIR / diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 7a79a1a..29f0fbd 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -1,9 +1,9 @@ FROM git.zontreck.com/packages/appimage:latest AS BUILDER WORKDIR / -RUN wget https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_1.20.4.tar.gz +RUN wget https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_1.20.6.tar.gz WORKDIR /vintagestory -RUN tar -xvf /vs_server_linux-x64_1.20.4.tar.gz && rm /*.tar.gz +RUN tar -xvf /vs_server_linux-x64_1.20.6.tar.gz && rm /*.tar.gz FROM git.zontreck.com/packages/appimage:latest @@ -11,7 +11,7 @@ FROM git.zontreck.com/packages/appimage:latest ENV PUB NAN ENV AGENT NAN -LABEL VS_API 1.20.4 +LABEL VS_API 1.20.6 WORKDIR / ADD ./entrypoint.sh /entrypoint.sh