From 373e149bfa49ad941811845dae236b983ba83898 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Sat, 23 Apr 2016 13:40:46 +0200 Subject: [PATCH] rutorrent : binary stripping --- rutorrent/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rutorrent/Dockerfile b/rutorrent/Dockerfile index f1c4ae2..9e02631 100644 --- a/rutorrent/Dockerfile +++ b/rutorrent/Dockerfile @@ -28,7 +28,8 @@ RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/ap cppunit-dev \ openssl-dev \ ncurses-dev \ - curl-dev" \ + curl-dev + binutils" \ && apk -U add \ ${BUILD_DEPS} \ ffmpeg \ @@ -98,6 +99,8 @@ RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/ap && mkdir /filebot \ && wget -q http://downloads.sourceforge.net/project/filebot/filebot/FileBot_${FILEBOT_VER}/FileBot_${FILEBOT_VER}-portable.zip -P /tmp \ && unzip -q /tmp/FileBot_${FILEBOT_VER}-portable.zip -d /filebot \ + && strip -s /usr/local/bin/rtorrent \ + && strip -s /usr/local/bin/mediainfo \ && apk del ${BUILD_DEPS} \ && deluser svn \ && delgroup svnusers \