From f166ff31cf7cb5f4aea55693eba3d8cb818a8748 Mon Sep 17 00:00:00 2001 From: Ferdinand99 Date: Sat, 22 Mar 2025 20:16:15 +0100 Subject: [PATCH] Update newt/Dockerfile Updated Newt to release 1.1.2 --- newt/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/newt/Dockerfile b/newt/Dockerfile index 6327507..aa2f992 100644 --- a/newt/Dockerfile +++ b/newt/Dockerfile @@ -7,15 +7,15 @@ RUN apk add --no-cache bash curl jq # Detect system architecture and download the correct Newt binary RUN ARCH=$(uname -m) && \ if [ "$ARCH" = "x86_64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.1/newt_linux_amd64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_amd64; \ elif [ "$ARCH" = "aarch64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.1/newt_linux_arm64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_arm64; \ elif [ "$ARCH" = "armv7l" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.1/newt_linux_arm32; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_arm32; \ elif [ "$ARCH" = "armv6l" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.1/newt_linux_arm32v6; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_arm32v6; \ elif [ "$ARCH" = "riscv64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.1/newt_linux_riscv64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_riscv64; \ else \ echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \ fi && \ @@ -27,4 +27,4 @@ COPY run.sh /run.sh RUN chmod +x /run.sh # Run the script as the main process -ENTRYPOINT [ "/run.sh" ] \ No newline at end of file +ENTRYPOINT [ "/run.sh" ]