rtorrent-flood: update mediainfo

This commit is contained in:
Wonderfall 2017-03-06 10:46:48 +01:00
parent 66c333e570
commit 94f963ab98

View File

@ -1,8 +1,8 @@
FROM alpine:3.5 FROM alpine:edge
ARG RTORRENT_VER=0.9.6 ARG RTORRENT_VER=0.9.6
ARG LIBTORRENT_VER=0.13.6 ARG LIBTORRENT_VER=0.13.6
ARG MEDIAINFO_VER=0.7.92.1 ARG MEDIAINFO_VER=0.7.93
ARG FILEBOT_VER=4.7.8 ARG FILEBOT_VER=4.7.8
ARG BUILD_CORES ARG BUILD_CORES
@ -21,13 +21,13 @@ RUN NB_CORES=${BUILD_CORES-`getconf _NPROCESSORS_CONF`} \
wget \ wget \
tar \ tar \
xz \ xz \
subversion \ zlib-dev \
cppunit-dev \ cppunit-dev \
libressl-dev \ libressl-dev \
ncurses-dev \ ncurses-dev \
curl-dev \ curl-dev \
binutils" \ binutils" \
&& apk -U add \ && apk -U upgrade && apk add \
${BUILD_DEPS} \ ${BUILD_DEPS} \
ca-certificates \ ca-certificates \
curl \ curl \
@ -35,6 +35,7 @@ RUN NB_CORES=${BUILD_CORES-`getconf _NPROCESSORS_CONF`} \
libressl \ libressl \
gzip \ gzip \
zip \ zip \
zlib \
unrar \ unrar \
s6 \ s6 \
su-exec \ su-exec \
@ -65,7 +66,7 @@ RUN NB_CORES=${BUILD_CORES-`getconf _NPROCESSORS_CONF`} \
&& strip -s /usr/local/bin/mktorrent \ && strip -s /usr/local/bin/mktorrent \
&& strip -s /usr/local/bin/mediainfo \ && strip -s /usr/local/bin/mediainfo \
&& mkdir /filebot && cd /filebot \ && mkdir /filebot && cd /filebot \
&& wget -q http://sourceforge.mirrorservice.org/f/fi/filebot/filebot/FileBot_${FILEBOT_VER}/FileBot_${FILEBOT_VER}-portable.tar.xz \ && wget -q https://netcologne.dl.sourceforge.net/project/filebot/filebot/FileBot_${FILEBOT_VER}/FileBot_${FILEBOT_VER}-portable.tar.xz \
&& tar xJf FileBot_${FILEBOT_VER}-portable.tar.xz && rm FileBot_${FILEBOT_VER}-portable.tar.xz \ && tar xJf FileBot_${FILEBOT_VER}-portable.tar.xz && rm FileBot_${FILEBOT_VER}-portable.tar.xz \
&& cd /usr && git clone https://github.com/jfurrow/flood && cd flood \ && cd /usr && git clone https://github.com/jfurrow/flood && cd flood \
&& npm install --production \ && npm install --production \