1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/pptp/Dockerfile

15 lines
280 B
Docker
Raw Normal View History

2016-06-30 06:19:43 +00:00
#
# Dockerfile for pptp
#
2016-07-08 11:53:48 +00:00
FROM alpine:edge
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-06-30 06:19:43 +00:00
2016-07-08 11:53:48 +00:00
RUN apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
pptpclient
2016-06-30 06:19:43 +00:00
COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]