1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00

20 lines
487 B
Docker
Raw Normal View History

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