3.11.6 #1

Merged
jonny merged 49 commits from 3.11.6 into master 2020-07-20 13:17:56 +00:00
Showing only changes of commit 263d0c027b - Show all commits

View File

@ -21,9 +21,8 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie
RUN echo $VERSION
RUN wget https://github.com/theotherp/nzbhydra2/releases/download/v$VERSION/nzbhydra2-$VERSION-linux.zip -O nzbhydra.zip
RUN mkdir /nzbhydra
RUN cd /nzbhydra
RUN unzip ..//nzbhydra.zip
RUN chmod 755 nzbhydra2
RUN unzip /nzbhydra.zip -d /nzbhydra
RUN chmod 755 /nzbhydra/nzbhydra2
RUN rm -rf /nzbhydra.zip
RUN rm -rf /tmp/src
RUN rm -rf /var/cache/apk/*
@ -37,4 +36,4 @@ WORKDIR /nzbhydra
VOLUME /config
USER $MED_USER
CMD [ "/usr/bin/python3", "/nzbhydra/nzbhydra2wrapperPy3.py", "--nobrowser", "--datafolder=/config/" ]
CMD [ "/usr/bin/python3", "nzbhydra2wrapperPy3.py", "--nobrowser", "--datafolder=/config/" ]