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.
22 lines
372 B
22 lines
372 B
2 years ago
|
FROM linuxserver/readarr:amd64-develop
|
||
|
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
|