mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-12 04:23:04 +02:00
16 lines
262 B
Docker
16 lines
262 B
Docker
|
#
|
||
|
# Dockerfile for pptp
|
||
|
#
|
||
|
|
||
|
FROM debian
|
||
|
MAINTAINER kev <noreply@easypi.info>
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apt-get update \
|
||
|
&& apt-get install -y pptp-linux \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
COPY docker-entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|