From ed7556b6c629e113b32eb7bfc1050b4b4a5ff830 Mon Sep 17 00:00:00 2001 From: Kristian Haugene Date: Wed, 11 May 2016 22:18:30 +0200 Subject: [PATCH] installing rar and unrar to be able to execute simple scripts in the container. ref issue #75 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1a6032b1a..847c60ae1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,11 @@ VOLUME /config # Update packages and install software RUN apt-get update \ && apt-get -y install software-properties-common \ + && add-apt-repository multiverse \ && add-apt-repository ppa:transmissionbt/ppa \ && apt-get update \ - && apt-get install -y transmission-cli transmission-common transmission-daemon openvpn curl \ + && apt-get install -y transmission-cli transmission-common transmission-daemon \ + && apt-get install -y openvpn curl rar unrar \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ && curl -L https://github.com/jwilder/dockerize/releases/download/v0.0.2/dockerize-linux-amd64-v0.0.2.tar.gz | tar -C /usr/local/bin -xzv