-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull from alpine linux CDN to fix build errors on quay.
- Loading branch information
1 parent
0392c3e
commit ebdfb3a
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ FROM alpine:3.5 | |
|
||
MAINTAINER Pieter Lange <[email protected]> | ||
|
||
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories && \ | ||
echo "http://dl-4.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \ | ||
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories && \ | ||
echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \ | ||
apk add --update openvpn bash easy-rsa libintl inotify-tools openvpn-auth-pam google-authenticator pamtester && \ | ||
apk add --virtual temppkg gettext && \ | ||
cp /usr/bin/envsubst /usr/local/bin/envsubst && \ | ||
|