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
This commit is contained in:
nexusmaniac
2018-07-23 18:44:47 +01:00
committed by GitHub
parent 764a066b3d
commit 60438f3f80

View File

@@ -1,4 +1,4 @@
FROM alpine:3.7 FROM alpine:3.8
# MAINTAINER Kristian Haugene # MAINTAINER Kristian Haugene
VOLUME /data VOLUME /data
@@ -6,7 +6,7 @@ VOLUME /config
ENV DOCKERIZE_VERSION=v0.6.0 ENV DOCKERIZE_VERSION=v0.6.0
RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ 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" \ && 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 \ && 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 \ && mkdir -p /opt/transmission-ui \