1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/pptpd/Dockerfile
2015-06-28 11:42:35 +08:00

19 lines
335 B
Docker

#
# Dockerfile for pptpd
#
# WARNING: I ONLY WORKS IN NET:HOST MODE
#
FROM debian:jessie
MAINTAINER kev<noreply@datageek.info>
RUN apt-get update \
&& apt-get install -y iptables pptpd \
&& rm -rf /var/lib/apt/lists/*
COPY pptpd.conf /etc/
COPY chap-secrets /etc/ppp/
COPY pptpd-options /etc/ppp/
CMD ["pptpd", "--fg"]