From 60438f3f80fc880207ebdbdfae9747bd7bbfe2ce Mon Sep 17 00:00:00 2001 From: nexusmaniac Date: Mon, 23 Jul 2018 18:44:47 +0100 Subject: [PATCH] Update Dockerfile.alpine Could bump the Alpine version to 3.8 now that it's stable? :) In theory it'll pull the latest Transmission-daemon 2.94 too :D Also, `curl` attempts to run as part of the port forward script for a PIA VPN connection... But we don't install curl :P --- Dockerfile.alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 38b85df09..cea859081 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM alpine:3.7 +FROM alpine:3.8 # MAINTAINER Kristian Haugene VOLUME /data @@ -6,7 +6,7 @@ VOLUME /config ENV DOCKERIZE_VERSION=v0.6.0 RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ - && apk --no-cache add bash dumb-init ip6tables ufw@testing openvpn shadow transmission-daemon \ + && apk --no-cache add bash dumb-init ip6tables ufw@testing openvpn shadow transmission-daemon curl \ && echo "Install dockerize $DOCKERIZE_VERSION" \ && wget -qO- https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz | tar xz -C /usr/bin \ && mkdir -p /opt/transmission-ui \