Initial commit
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user