1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/pptp/Dockerfile

16 lines
271 B
Docker
Raw Normal View History

2016-06-30 06:19:43 +00:00
#
# Dockerfile for pptp
#
FROM debian
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apt-get update \
&& apt-get install -y iptables pptp-linux \
&& rm -rf /var/lib/apt/lists/*
COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]