mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
19 lines
335 B
Docker
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"]
|