mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
19 lines
436 B
Docker
19 lines
436 B
Docker
#
|
|
# Dockerfile for openconnect
|
|
#
|
|
|
|
FROM alpine:edge
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache \
|
|
--repository http://dl-cdn.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"]
|