mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-02-09 13:47:10 +02:00
17 lines
351 B
Docker
17 lines
351 B
Docker
#
|
|
# Dockerfile for ShadowVPN
|
|
#
|
|
|
|
FROM debian:jessie
|
|
MAINTAINER kev <noreply@datageek.info>
|
|
|
|
WORKDIR /
|
|
RUN apt-get update
|
|
RUN apt-get install build-essential automake libtool debhelper gawk git
|
|
RUN git clone --recursive https://github.com/clowwindy/ShadowVPN.git
|
|
|
|
WORKDIR /ShadowVPN
|
|
RUN ./autogen.sh
|
|
RUN dpkg-buildpackage
|
|
RUN dpkg -i ../shadowvpn_*.deb
|