1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/pptp/Dockerfile
2023-10-17 14:54:23 +08:00

15 lines
279 B
Docker

#
# Dockerfile for pptp
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
pptpclient
COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]