Update Dockerfile

This commit is contained in:
MarkusMcNugen 2018-02-11 22:02:57 -05:00 committed by GitHub
parent b36e73a2da
commit bcbab8640c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,9 +58,9 @@ RUN buildDeps=" \
&& tar -xzf qbittorrent.tar.gz -C /usr/src/qbittorrent --strip-components=1 \
&& rm qbittorrent.tar.gz* \
&& export EXECINFO=$(grep -rne 'include <execinfo.h>' /usr/src/qbittorrent/src/app/main.cpp | grep -Eo '^[^:]+') \
&& sed -i "$(EXECINFO)s/.*/" /usr/src/qbittorrent/src/app/main.cpp \
&& exec /bin/bash sed -i "$(EXECINFO)s/.*/" /usr/src/qbittorrent/src/app/main.cpp \
&& export STACKTRACE=$(grep -rne 'include "stacktrace.h"' /usr/src/qbittorrent/src/app/main.cpp | grep -Eo '^[^:]+') \
&& sed -i "$(STACKTRACE)s/.*/" /usr/src/qbittorrent/src/app/main.cpp \
&& sed -i "$STACKTRACEs/.*/" /usr/src/qbittorrent/src/app/main.cpp \
&& cd /usr/src/qbittorrent/ \
&& ./configure --disable-gui --prefix=/usr \
&& make -j$(nproc) \