This repository has been archived by the owner on Jul 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharm64v8.dockerfile
68 lines (59 loc) · 2.04 KB
/
arm64v8.dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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-aarch64.tar.gz
RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1
FROM linuxserver/sabnzbd:arm64v8-latest
# Add QEMU
COPY --from=builder qemu-aarch64-static /usr/bin
LABEL maintainer="RandomNinjaAtk"
ENV TITLE="SABnzbd Extended"
ENV VERSION="1.0.144"
ENV SMA_PATH /usr/local/sma
ENV VIDEO_LANG eng
ENV VIDEO_SMA FALSE
ENV VIDEO_SMA_TAGGING FALSE
ENV AUDIO_VERIFY TRUE
ENV AUDIO_FORMAT FLAC
ENV AUDIO_BITRATE 320
ENV AUDIO_REPLAYGAIN FALSE
ENV AUDIO_DSFA TRUE
ENV AUDIO_DSFAS 153600k
ENV RequireAudioQualityMatch false
RUN \
echo "************ install and update packages ************" && \
apk add -U --update --no-cache \
flac \
opus-tools \
jq \
git \
mkvtoolnix \
sox \
ffmpeg && \
apk add mp3val --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing && \
echo "************ install python packages ************" && \
pip install --upgrade --no-cache-dir -U \
r128gain && \
echo "************ setup SMA ************" && \
echo "************ setup directory ************" && \
mkdir -p ${SMA_PATH} && \
echo "************ download repo ************" && \
git clone https://github.com/mdhiggins/sickbeard_mp4_automator.git ${SMA_PATH} && \
mkdir -p ${SMA_PATH}/config && \
echo "************ create logging file ************" && \
mkdir -p ${SMA_PATH}/config && \
touch ${SMA_PATH}/config/sma.log && \
chgrp users ${SMA_PATH}/config/sma.log && \
chmod g+w ${SMA_PATH}/config/sma.log && \
echo "************ install pip dependencies ************" && \
python3 -m pip install --upgrade pip && \
pip3 install -r ${SMA_PATH}/setup/requirements.txt && \
echo "************ install beets ************" && \
pip3 install https://github.com/beetbox/beets/tarball/master && \
pip3 install pyacoustid
# copy local files
COPY root/ /
# set work directory
WORKDIR /config
# ports and volumes
EXPOSE 8080 9090
VOLUME /config