mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-25 12:04:58 +00:00
Update Dockerfile
This commit is contained in:
parent
84973906f2
commit
3ae5a341e7
36
Dockerfile
36
Dockerfile
@ -33,34 +33,34 @@ RUN buildDeps=" \
|
|||||||
xz \
|
xz \
|
||||||
"; \
|
"; \
|
||||||
set -x \
|
set -x \
|
||||||
&& apk add --update --virtual .build-deps $buildDeps \
|
&& apk add --update --virtual .build-deps $buildDeps \
|
||||||
&& 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!.*/!!') \
|
&& 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!.*/!!') \
|
||||||
&& export 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!.*/!!') \
|
&& export 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/arvidn/libtorrent/archive/$LIBTOR_VERSION.tar.gz" -o libtor.tar.gz \
|
&& curl -L "https://github.com/arvidn/libtorrent/archive/$LIBTOR_VERSION.tar.gz" -o libtor.tar.gz \
|
||||||
&& curl -L "https://github.com/qbittorrent/qBittorrent/archive/$QBIT_VERSION.tar.gz" -o qbittorrent.tar.gz \
|
&& curl -L "https://github.com/qbittorrent/qBittorrent/archive/$QBIT_VERSION.tar.gz" -o qbittorrent.tar.gz \
|
||||||
&& mkdir -p /usr/src/libtorrent \
|
&& mkdir -p /usr/src/libtorrent \
|
||||||
&& mkdir -p /usr/src/qbittorrent \
|
&& mkdir -p /usr/src/qbittorrent \
|
||||||
&& tar -xzf libtor.tar.gz -C /usr/src/libtorrent --strip-components=1 \
|
&& tar -xzf libtor.tar.gz -C /usr/src/libtorrent --strip-components=1 \
|
||||||
&& tar -xzf qbittorrent.tar.gz -C /usr/src/qbittorrent --strip-components=1 \
|
&& tar -xzf qbittorrent.tar.gz -C /usr/src/qbittorrent --strip-components=1 \
|
||||||
&& rm libtor.tar.gz* \
|
&& rm libtor.tar.gz* \
|
||||||
&& rm qbittorrent.tar.gz* \
|
&& rm qbittorrent.tar.gz* \
|
||||||
&& cd /usr/src/libtorrent/ \
|
&& cd /usr/src/libtorrent/ \
|
||||||
&& ./b2 install
|
&& ./b2 install \
|
||||||
&& cd /usr/src/qbittorrent/ \
|
&& cd /usr/src/qbittorrent/ \
|
||||||
&& ./configure --disable-gui \
|
&& ./configure --disable-gui \
|
||||||
&& make -j$(nproc) \
|
&& make -j$(nproc) \
|
||||||
&& make install \
|
&& make install \
|
||||||
&& cd / \
|
&& cd / \
|
||||||
&& rm -rf /usr/src/libtorrent \
|
&& rm -rf /usr/src/libtorrent \
|
||||||
&& rm -rf /usr/src/qbittorrent \
|
&& rm -rf /usr/src/qbittorrent \
|
||||||
&& runDeps="$( \
|
&& runDeps="$( \
|
||||||
scanelf --needed --nobanner /usr/local/bin/qbittorrent-nox \
|
scanelf --needed --nobanner /usr/local/bin/qbittorrent-nox \
|
||||||
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
|
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
|
||||||
| xargs -r apk info --installed \
|
| xargs -r apk info --installed \
|
||||||
| sort -u \
|
| sort -u \
|
||||||
)" \
|
)" \
|
||||||
&& apk add --virtual .run-deps $runDeps gnutls-utils iptables \
|
&& apk add --virtual .run-deps $runDeps gnutls-utils iptables \
|
||||||
&& apk del .build-deps \
|
&& apk del .build-deps \
|
||||||
&& rm -rf /var/cache/apk/*
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
# Add configuration and scripts
|
# Add configuration and scripts
|
||||||
|
Loading…
Reference in New Issue
Block a user