1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-04-23 12:08:49 +02:00

fix openconnect (FIX #44)

This commit is contained in:
kev 2021-04-06 15:55:21 +08:00
parent 5642407309
commit 4474e2e083
2 changed files with 11 additions and 5 deletions

View File

@ -2,11 +2,14 @@
# Dockerfile for openconnect # Dockerfile for openconnect
# #
FROM alpine:edge FROM alpine:3.12
MAINTAINER kev <noreply@easypi.pro> MAINTAINER EasyPi Software Foundation
RUN set -xe \ RUN set -xe \
&& apk add --no-cache openconnect \ && apk add --no-cache nettle \
&& apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
openconnect \
&& mkdir -p /etc/openconnect \ && mkdir -p /etc/openconnect \
&& touch /etc/openconnect/openconnect.conf && touch /etc/openconnect/openconnect.conf

View File

@ -2,11 +2,14 @@
# Dockerfile for openconnect-arm # Dockerfile for openconnect-arm
# #
FROM arm32v7/alpine:edge FROM arm32v7/alpine:3.12
MAINTAINER EasyPi Software Foundation MAINTAINER EasyPi Software Foundation
RUN set -xe \ RUN set -xe \
&& apk add --no-cache openconnect \ && apk add --no-cache nettle \
&& apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
openconnect \
&& mkdir -p /etc/openconnect \ && mkdir -p /etc/openconnect \
&& touch /etc/openconnect/openconnect.conf && touch /etc/openconnect/openconnect.conf