From 1146a9e7556d4f51ba8d0e4941b6b83e98a92954 Mon Sep 17 00:00:00 2001 From: thespad Date: Tue, 23 Apr 2024 14:59:56 +0100 Subject: [PATCH] Bump dotnet framework to 8.x --- Dockerfile | 2 +- Dockerfile.aarch64 | 4 ++-- readme-vars.yml | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74acb2e..f18f993 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN \ curl -o /tmp/dotnet-install.sh -L \ https://dot.net/v1/dotnet-install.sh && \ chmod +x /tmp/dotnet-install.sh && \ - /tmp/dotnet-install.sh -c 7.0 --install-dir /app/dotnet --runtime dotnet && \ + /tmp/dotnet-install.sh -c 8.0 --install-dir /app/dotnet --runtime dotnet && \ echo "**** install webgrabplus ****" && \ if [ -z "$WEBGRAB_VER" ]; then \ WEBGRAB_VER=$(curl -fsL http://webgrabplus.com/download/sw | grep -m1 /download/sw/v | sed 's|.*/download/sw/v\(.*\)">V.*|\1|'); \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index e8d1e42..8697b60 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -19,14 +19,14 @@ RUN \ echo "**** install packages ****" && \ apk -U --update --no-cache add \ icu-libs \ - iputils \ + iputils \ unzip && \ echo "**** install dotnet sdk ****" && \ mkdir -p /app/dotnet && \ curl -o /tmp/dotnet-install.sh -L \ https://dot.net/v1/dotnet-install.sh && \ chmod +x /tmp/dotnet-install.sh && \ - /tmp/dotnet-install.sh -c 7.0 --install-dir /app/dotnet --runtime dotnet && \ + /tmp/dotnet-install.sh -c 8.0 --install-dir /app/dotnet --runtime dotnet && \ echo "**** install webgrabplus ****" && \ if [ -z "$WEBGRAB_VER" ]; then \ WEBGRAB_VER=$(curl -fsL http://webgrabplus.com/download/sw | grep -m1 /download/sw/v | sed 's|.*/download/sw/v\(.*\)">V.*|\1|'); \ diff --git a/readme-vars.yml b/readme-vars.yml index e3ba189..5665911 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -47,6 +47,7 @@ app_setup_block: | To adjust the scheduled cron job, you can apply our [universal cron mod](https://github.com/linuxserver/docker-mods/tree/universal-cron). # changelog changelogs: + - {date: "23.04.24:", desc: "Bump dotnet framework to 8.x."} - { date: "23.12.23:", desc: "Rebase to Alpine 3.19."} - {date: "18.08.23:", desc: "Rebase to Alpine 3.18."} - {date: "16.08.23:", desc: "Update dotnet framework to 7.x."}