diff --git a/arm64v8.dockerfile b/arm64v8.dockerfile index 1cdd2fe..f827111 100644 --- a/arm64v8.dockerfile +++ b/arm64v8.dockerfile @@ -1,13 +1,13 @@ FROM alpine AS builder # Download QEMU, see https://github.com/docker/hub-feedback/issues/1261 -ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v3.0.0%2Bresin/qemu-3.0.0+resin-arm.tar.gz +ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v3.0.0%2Bresin/qemu-3.0.0+resin-aarch64.tar.gz RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1 FROM linuxserver/sonarr:arm64v8-develop # Add QEMU -COPY --from=builder qemu-arm-static /usr/bin +COPY --from=builder qemu-aarch64-static /usr/bin LABEL maintainer="RandomNinjaAtk"