diff --git a/FlutterSdk/Dockerfile b/FlutterSdk/Dockerfile index b1fae40..7437244 100644 --- a/FlutterSdk/Dockerfile +++ b/FlutterSdk/Dockerfile @@ -2,7 +2,7 @@ FROM git.zontreck.com/packages/adk:latest AS FLUTTER WORKDIR / RUN curl -sO https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.29.2-stable.tar.xz -RUN tar -xf /flutter_linux_3.29.2-stable.tar.xz; rm /flutter*.xz +RUN tar -xf /flutter_linux_3.29.3-stable.tar.xz; rm /flutter*.xz FROM git.zontreck.com/packages/adk:latest diff --git a/Jenkins/Dockerfile b/Jenkins/Dockerfile index 797a5ec..865383d 100644 --- a/Jenkins/Dockerfile +++ b/Jenkins/Dockerfile @@ -11,9 +11,9 @@ RUN apt-get update RUN apt-get upgrade -y -RUN apt-get install -y temurin-17-jdk curl wget moreutils && apt-get clean -y +RUN apt-get install -y temurin-21-jdk curl wget moreutils && apt-get clean -y -ENV JENKINS_VERSION 2.504 +ENV JENKINS_VERSION 2.507 USER root WORKDIR / diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 460f3de..1cbc417 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.7.tar.gz +RUN wget https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_1.20.9.tar.gz WORKDIR /vintagestory -RUN tar -xvf /vs_server_linux-x64_1.20.7.tar.gz && rm /*.tar.gz +RUN tar -xvf /vs_server_linux-x64_1.20.9.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.7 +LABEL VS_API 1.20.9 WORKDIR / ADD ./entrypoint.sh /entrypoint.sh diff --git a/NextCloud/Dockerfile b/NextCloud/Dockerfile index db0499e..bd0b938 100644 --- a/NextCloud/Dockerfile +++ b/NextCloud/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /var/www RUN git clone https://github.com/nextcloud/server html WORKDIR /var/www/html -RUN git checkout v30.0.6 +RUN git checkout v31.0.4 RUN git submodule update --init --recursive RUN rm -rf .git @@ -23,7 +23,7 @@ RUN apt-get install -y apache2 apache2-utils php8.2 php8.2-gd php8.2-mysql php8. RUN apt-get install -y php8.2-bcmath php8.2-gmp php8.2-intl cron ENV MOUNTPOINT /var/www/html -ENV NEXTCLOUD_VERSION 30.0.6 +ENV NEXTCLOUD_VERSION 31.0.4 WORKDIR /var/www/