From 411a8eaa2bc1ead509d4189095a5facf9bf82211 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Thu, 26 Jan 2023 16:35:13 -0500 Subject: [PATCH] Create arm32v7.dockerfile --- arm32v7.dockerfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 arm32v7.dockerfile diff --git a/arm32v7.dockerfile b/arm32v7.dockerfile new file mode 100644 index 0000000..8f9d31a --- /dev/null +++ b/arm32v7.dockerfile @@ -0,0 +1,31 @@ +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 +RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1 + +FROM linuxserver/readarr:arm32v7-latest + +# Add QEMU +COPY --from=builder qemu-arm-static /usr/bin + +LABEL maintainer="RandomNinjaAtk" + +ENV TITLE="Readarr Extended" +ENV VERSION="1.0.00001" + +RUN \ + echo "************ install and update packages ************" && \ + apk add -U --update --no-cache \ + jq \ + ffmpeg + +# copy local files +#COPY root/ / + +# set work directory +WORKDIR /config + +# ports and volumes +EXPOSE 8787 +VOLUME /config