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

20 lines
475 B
Docker
Raw Normal View History

2016-06-30 02:31:11 +08:00
#
# Dockerfile for openconnect
#
2021-04-06 15:55:21 +08:00
FROM alpine:3.12
MAINTAINER EasyPi Software Foundation
2016-06-30 02:31:11 +08:00
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-06-30 02:31:11 +08:00
&& mkdir -p /etc/openconnect \
&& touch /etc/openconnect/openconnect.conf
VOLUME /etc/openconnect
ENTRYPOINT ["openconnect", "--config=/etc/openconnect/openconnect.conf"]
CMD ["--help"]