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

17 lines
344 B
Docker
Raw Normal View History

2016-06-30 02:31:11 +08:00
#
# Dockerfile for openconnect
#
2022-08-19 17:30:44 +08:00
FROM alpine:3
2021-04-06 15:55:21 +08:00
MAINTAINER EasyPi Software Foundation
2016-06-30 02:31:11 +08:00
RUN set -xe \
2022-08-19 17:30:44 +08:00
&& apk add --no-cache nettle 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"]