Update Dockerfile

This commit is contained in:
MarkusMcNugen 2021-03-23 00:05:59 -04:00 committed by GitHub
parent 5e216ef324
commit 2d8bfc3566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,32 +58,32 @@ RUN buildDeps=" \
set -x \
&& apk add --update --virtual .build-deps $buildDeps
RUN export LIBTOR_VERSION=$(curl --silent "https://github.com/arvidn/libtorrent/tags" 2>&1 | grep -m 1 'libtorrent-' | sed -e 's~^[ \t]*~~;s~[ \t]*$~~' | sed -n 's/.*href="\([^"]*\).*/\1/p' | sed 's!.*/!!') \
&& curl -L "https://github.com/arvidn/libtorrent/archive/$LIBTOR_VERSION.tar.gz" -o libtor.tar.gz \
&& mkdir -p /usr/src/libtorrent \
&& tar -xzf libtor.tar.gz -C /usr/src/libtorrent --strip-components=1 \
&& rm libtor.tar.gz* \
&& cd /usr/src/libtorrent/ \
&& ./autotool.sh \
&& export LDFLAGS=-L/opt/local/lib \
&& export CXXFLAGS=-I/opt/local/include \
&& ./configure --disable-debug --enable-encryption --prefix=/usr \
&& make -j$(nproc) \
&& make install \
&& QBIT_VERSION=$(curl --silent "https://github.com/qbittorrent/qBittorrent/tags" 2>&1 | grep -m 1 'release-' | sed -e 's~^[ \t]*~~;s~[ \t]*$~~' | sed -n 's/.*href="\([^"]*\).*/\1/p' | sed 's!.*/!!') \
&& curl -L "https://github.com/qbittorrent/qBittorrent/archive/$QBIT_VERSION.tar.gz" -o qbittorrent.tar.gz \
&& mkdir -p /usr/src/qbittorrent \
&& tar -xzf qbittorrent.tar.gz -C /usr/src/qbittorrent --strip-components=1 \
&& rm qbittorrent.tar.gz* \
&& cd /usr/src/qbittorrent/src/app \
&& patch -i /tmp/patches/main.patch \
&& cd /usr/src/qbittorrent/ \
&& ./configure --disable-gui --prefix=/usr \
&& make -j$(nproc) \
&& make install \
&& cd / \
&& rm -rf /usr/src/libtorrent \
&& rm -rf /usr/src/qbittorrent
RUN export LIBTOR_VERSION=$(curl --silent "https://github.com/arvidn/libtorrent/tags" 2>&1 | grep -m 1 'libtorrent-' | sed -e 's~^[t]*~~;s~[t]*$~~' | sed -n 's/.*href="\([^"]*\).*/\1/p' | sed 's!.*/!!')
RUN curl -L "https://github.com/arvidn/libtorrent/archive/$LIBTOR_VERSION.tar.gz" -o libtor.tar.gz
RUN mkdir -p /usr/src/libtorrent
RUN tar -xzf libtor.tar.gz -C /usr/src/libtorrent --strip-components=1
RUN rm libtor.tar.gz*
RUN cd /usr/src/libtorrent/
RUN ./autotool.sh
RUN export LDFLAGS=-L/opt/local/lib
RUN export CXXFLAGS=-I/opt/local/include
RUN ./configure --disable-debug --enable-encryption --prefix=/usr
RUN make -j$(nproc)
RUN make install
RUN QBIT_VERSION=$(curl --silent "https://github.com/qbittorrent/qBittorrent/tags" 2>&1 | grep -m 1 'release-' | sed -e 's~^[t]*~~;s~[t]*$~~' | sed -n 's/.*href="\([^"]*\).*/\1/p' | sed 's!.*/!!')
RUN curl -L "https://github.com/qbittorrent/qBittorrent/archive/$QBIT_VERSION.tar.gz" -o qbittorrent.tar.gz
RUN mkdir -p /usr/src/qbittorrent
RUN tar -xzf qbittorrent.tar.gz -C /usr/src/qbittorrent --strip-components=1
RUN rm qbittorrent.tar.gz*
RUN cd /usr/src/qbittorrent/src/app
RUN patch -i /tmp/patches/main.patch
RUN cd /usr/src/qbittorrent/
RUN ./configure --disable-gui --prefix=/usr
RUN make -j$(nproc)
RUN make install
RUN cd /
RUN rm -rf /usr/src/libtorrent
RUN rm -rf /usr/src/qbittorrent
RUN runDeps="$( \
scanelf --needed --nobanner /usr/local/bin/qbittorrent-nox \