Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
David Personette committed Jan 4, 2015
0 parents commit 0c1ad2a
Show file tree
Hide file tree
Showing 5 changed files with 899 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.git
LICENSE
README.md
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu:trusty
MAINTAINER David Personette <[email protected]>

ENV DEBIAN_FRONTEND noninteractive

# Install openvpn
COPY openvpn.sh /usr/bin/
RUN apt-get update -qq && \
apt-get install -qqy --no-install-recommends openvpn && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/*

VOLUME ["/vpn"]

ENTRYPOINT ["openvpn.sh"]
Loading

0 comments on commit 0c1ad2a

Please sign in to comment.