Fix: Download correct Newt binary for system architecture - v1.2.4
This commit is contained in:
parent
b9259c16fc
commit
4e0dacf783
2 changed files with 18 additions and 4 deletions
|
@ -4,9 +4,23 @@ FROM ghcr.io/hassio-addons/base:14.0.0
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
RUN apk add --no-cache bash curl jq
|
RUN apk add --no-cache bash curl jq
|
||||||
|
|
||||||
# Download and install Newt
|
# Detect system architecture and download the correct Newt binary
|
||||||
RUN curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.0.0/newt_linux_amd64 \
|
RUN ARCH=$(uname -m) && \
|
||||||
&& chmod +x /usr/bin/newt
|
if [ "$ARCH" = "x86_64" ]; then \
|
||||||
|
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.0/newt_linux_amd64; \
|
||||||
|
elif [ "$ARCH" = "aarch64" ]; then \
|
||||||
|
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.0/newt_linux_arm64; \
|
||||||
|
elif [ "$ARCH" = "armv7l" ]; then \
|
||||||
|
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.0/newt_linux_arm32; \
|
||||||
|
elif [ "$ARCH" = "armv6l" ]; then \
|
||||||
|
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.0/newt_linux_arm32v6; \
|
||||||
|
elif [ "$ARCH" = "riscv64" ]; then \
|
||||||
|
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.0/newt_linux_riscv64; \
|
||||||
|
else \
|
||||||
|
echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \
|
||||||
|
fi && \
|
||||||
|
chmod +x /usr/bin/newt
|
||||||
|
|
||||||
|
|
||||||
# Copy the script into the container
|
# Copy the script into the container
|
||||||
COPY run.sh /run.sh
|
COPY run.sh /run.sh
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: "Newt Add-on"
|
name: "Newt Add-on"
|
||||||
version: "1.2.3"
|
version: "1.2.4"
|
||||||
slug: "newt"
|
slug: "newt"
|
||||||
description: "Runs Newt inside Home Assistant OS"
|
description: "Runs Newt inside Home Assistant OS"
|
||||||
arch:
|
arch:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue