mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
17 lines
396 B
Docker
17 lines
396 B
Docker
|
#
|
||
|
# Dockerfile for openconnect
|
||
|
#
|
||
|
|
||
|
FROM alpine
|
||
|
MAINTAINER kev <noreply@easypi.info>
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ openconnect \
|
||
|
&& mkdir -p /etc/openconnect \
|
||
|
&& touch /etc/openconnect/openconnect.conf
|
||
|
|
||
|
VOLUME /etc/openconnect
|
||
|
|
||
|
ENTRYPOINT ["openconnect", "--config=/etc/openconnect/openconnect.conf"]
|
||
|
CMD ["--help"]
|