1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/openconnect/arm/Dockerfile

20 lines
487 B
Docker
Raw Normal View History

2016-07-08 15:07:41 +02:00
#
# Dockerfile for openconnect-arm
#
2021-04-06 09:55:21 +02:00
FROM arm32v7/alpine:3.12
2016-07-08 15:07:41 +02:00
MAINTAINER EasyPi Software Foundation
RUN set -xe \
2021-04-06 09:55:21 +02:00
&& apk add --no-cache nettle \
&& apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
openconnect \
2016-07-08 15:07:41 +02:00
&& mkdir -p /etc/openconnect \
&& touch /etc/openconnect/openconnect.conf
VOLUME /etc/openconnect
ENTRYPOINT ["openconnect", "--config=/etc/openconnect/openconnect.conf"]
CMD ["--help"]