1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/openconnect/Dockerfile

17 lines
344 B
Docker
Raw Normal View History

2016-06-29 18:31:11 +00:00
#
# Dockerfile for openconnect
#
2022-08-19 09:30:44 +00:00
FROM alpine:3
2021-04-06 07:55:21 +00:00
MAINTAINER EasyPi Software Foundation
2016-06-29 18:31:11 +00:00
RUN set -xe \
2022-08-19 09:30:44 +00:00
&& apk add --no-cache nettle openconnect \
2016-06-29 18:31:11 +00:00
&& mkdir -p /etc/openconnect \
&& touch /etc/openconnect/openconnect.conf
VOLUME /etc/openconnect
ENTRYPOINT ["openconnect", "--config=/etc/openconnect/openconnect.conf"]
CMD ["--help"]