You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
543 B
33 lines
543 B
FROM linuxserver/lidarr:amd64-nightly
|
|
LABEL maintainer="RandomNinjaAtk"
|
|
|
|
RUN \
|
|
echo "************ install packages ************" && \
|
|
apk add -U --update --no-cache \
|
|
flac \
|
|
beets \
|
|
jq \
|
|
git \
|
|
gcc \
|
|
ffmpeg \
|
|
python3-dev \
|
|
libc-dev \
|
|
py3-pip \
|
|
yt-dlp && \
|
|
echo "************ install python packages ************" && \
|
|
pip install \
|
|
yq \
|
|
r128gain \
|
|
tidal-dl \
|
|
pyacoustid \
|
|
deemix
|
|
|
|
# copy local files
|
|
COPY root/ /
|
|
|
|
WORKDIR /config
|
|
|
|
# ports and volumes
|
|
EXPOSE 8686
|
|
VOLUME /config /music /music-videos /downloads
|