1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/shadowvpn/Dockerfile

19 lines
387 B
Docker
Raw Normal View History

2015-06-11 16:17:53 +08:00
#
# Dockerfile for ShadowVPN
#
FROM debian:jessie
MAINTAINER kev <noreply@datageek.info>
WORKDIR /
RUN apt-get update
2015-06-11 16:18:36 +08:00
RUN apt-get install -y build-essential automake libtool debhelper gawk git
2015-06-11 16:17:53 +08:00
RUN git clone --recursive https://github.com/clowwindy/ShadowVPN.git
WORKDIR /ShadowVPN
RUN ./autogen.sh
2015-06-11 16:25:19 +08:00
RUN ./configure --enable-static --sysconfdir=/etc
RUN make install
CMD ["/bin/bash"]