From 83b572544a94175ec2ebaac83665cb112b37d9f2 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Mon, 27 Jun 2022 14:21:06 +0000 Subject: [PATCH] Create arm32v7.dockerfile --- arm32v7.dockerfile | 57 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 arm32v7.dockerfile diff --git a/arm32v7.dockerfile b/arm32v7.dockerfile new file mode 100644 index 0000000..5542e9f --- /dev/null +++ b/arm32v7.dockerfile @@ -0,0 +1,57 @@ +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/lidarr:arm32v7-nightly + +# Add QEMU +COPY --from=builder qemu-arm-static /usr/bin + +LABEL maintainer="RandomNinjaAtk" +ENV dockerTitle="lidarr-extended" +ENV dockerVersion="1.0.143" +ENV LANG=en_US.UTF-8 +ENV autoStart=true +ENV configureLidarrWithOptimalSettings=false +ENV dlClientSource=deezer +ENV audioFormat=native +ENV audioBitrate=lossless +ENV audioLyricType=both +ENV addDeezerTopArtists=false +ENV addDeezerTopAlbumArtists=false +ENV addDeezerTopTrackArtists=false +ENV topLimit=10 +ENV addRelatedArtists=false +ENV tidalCountryCode=US +ENV numberOfRelatedArtistsToAddPerArtist=5 +ENV beetsMatchPercentage=90 + +RUN \ + echo "*** install packages ***" && \ + apk add -U --upgrade --no-cache \ + flac \ + beets \ + jq \ + ffmpeg \ + python3 \ + py3-pip \ + gcc \ + libc-dev \ + yt-dlp && \ + echo "*** install python packages ***" && \ + pip3 install --upgrade \ + yq \ + pyacoustid \ + tidal-dl \ + deemix + +# copy local files +COPY root/ / + +WORKDIR /config + +# ports and volumes +EXPOSE 8686 +VOLUME /config /music /music-videos /downloads