Initial commit

This commit is contained in:
Quentin McGaw
2018-02-06 21:57:41 -05:00
parent 1dffec8c48
commit 244ad9bb40
6 changed files with 99 additions and 2 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine
MAINTAINER Quentin McGaw <quentin.mcgaw@gmail.com>
RUN apk add --no-cache openvpn curl unzip
RUN mkdir /pia
WORKDIR /pia
RUN curl https://www.privateinternetaccess.com/openvpn/openvpn.zip > openvpn.zip && unzip openvpn.zip && rm openvpn.zip
RUN apk del curl unzip
COPY script.sh ./
ENV REGION="Romania"
ENTRYPOINT ["/pia/script.sh"]