1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/pptp/Dockerfile.debian

16 lines
272 B
Docker
Raw Normal View History

2016-07-08 13:53:48 +02:00
#
# Dockerfile for pptp
#
2023-10-17 08:54:23 +02:00
FROM debian:bookworm
MAINTAINER EasyPi Software Foundation
2016-07-08 13:53:48 +02:00
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"]