mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:19:24 +02:00
19 lines
387 B
Docker
19 lines
387 B
Docker
#
|
|
# Dockerfile for ShadowVPN
|
|
#
|
|
|
|
FROM debian:jessie
|
|
MAINTAINER kev <noreply@datageek.info>
|
|
|
|
WORKDIR /
|
|
RUN apt-get update
|
|
RUN apt-get install -y build-essential automake libtool debhelper gawk git
|
|
RUN git clone --recursive https://github.com/clowwindy/ShadowVPN.git
|
|
|
|
WORKDIR /ShadowVPN
|
|
RUN ./autogen.sh
|
|
RUN ./configure --enable-static --sysconfdir=/etc
|
|
RUN make install
|
|
|
|
CMD ["/bin/bash"]
|