mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
15 lines
280 B
Docker
15 lines
280 B
Docker
#
|
|
# Dockerfile for pptp
|
|
#
|
|
|
|
FROM alpine:edge
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN apk add --no-cache \
|
|
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
|
pptpclient
|
|
|
|
COPY docker-entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|