mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
15 lines
226 B
Docker
15 lines
226 B
Docker
|
#
|
||
|
# Dockerfile for openvpn-arm
|
||
|
#
|
||
|
|
||
|
FROM easypi/alpine-arm
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN apk add --no-cache openvpn
|
||
|
|
||
|
VOLUME /etc/openvpn
|
||
|
WORKDIR /etc/openvpn
|
||
|
|
||
|
ENTRYPOINT ["openvpn"]
|
||
|
CMD ["--config", "openvpn.conf"]
|