1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:15:04 +02:00
dockerfiles/pptpd/Dockerfile

19 lines
324 B
Docker
Raw Normal View History

2015-06-27 12:32:24 +02:00
#
# Dockerfile for pptpd
#
2015-06-28 05:12:07 +02:00
# WARNING: I ONLY WORKS IN NET:HOST MODE
#
2015-06-27 12:32:24 +02:00
2015-06-28 04:18:47 +02:00
FROM debian:jessie
2015-06-27 12:32:24 +02:00
MAINTAINER kev<noreply@datageek.info>
2015-06-28 04:21:57 +02:00
RUN apt-get update \
2015-06-28 05:12:07 +02:00
&& apt-get install -y pptpd \
2015-06-28 04:18:47 +02:00
&& rm -rf /var/lib/apt/lists/*
2015-06-27 12:32:24 +02:00
2015-06-27 13:33:27 +02:00
COPY pptpd.conf /etc/
COPY chap-secrets /etc/ppp/
2015-06-28 05:12:07 +02:00
COPY pptpd-options /etc/ppp/
2015-06-27 12:32:24 +02:00
2015-06-28 05:12:07 +02:00
CMD ["pptpd", "--fg"]