Skip to content

Commit 6bff62e

Browse files
committed
Dockerfile: Swtich from dl-4 to dl-cdn.alpinelinux.org
* At the time of this commit dl-4.alpinelinux.org was unreachable. * Switch to the CDN instead of some hardcoded server.
1 parent 909744d commit 6bff62e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ FROM alpine:3.5
55

66
MAINTAINER Kyle Manna <[email protected]>
77

8-
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories && \
9-
echo "http://dl-4.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \
8+
# Community: google-authenticator
9+
# Testing: pamtester
10+
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories && \
11+
echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \
1012
apk add --update openvpn iptables bash easy-rsa openvpn-auth-pam google-authenticator pamtester && \
1113
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \
1214
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/*

0 commit comments

Comments
 (0)