1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:36 +02:00
dockerfiles/pptpd/Dockerfile
2016-06-28 17:28:49 +08:00

20 lines
342 B
Docker

#
# Dockerfile for pptpd
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add --no-cache iptables ppp pptpd
COPY pptpd.conf /etc/
COPY chap-secrets /etc/ppp/
COPY pptpd-options /etc/ppp/
EXPOSE 1723
CMD set -xe \
&& iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE \
&& pptpd \
&& syslogd -n -O /dev/stdout