mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
15 lines
279 B
Docker
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"]
|