From a8e1ca0e51f1291b9678fb78715d726dc525de21 Mon Sep 17 00:00:00 2001 From: Matthias Lohr Date: Fri, 9 Jun 2017 10:46:25 +0200 Subject: [PATCH] enabled certificate check --- Dockerfile | 6 +++--- files/{ => opt}/connect.sh | 0 files/{ => opt}/idle.sh | 0 files/{ => opt}/run.sh | 0 files/{ => opt}/setup.sh | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename files/{ => opt}/connect.sh (100%) rename files/{ => opt}/idle.sh (100%) rename files/{ => opt}/run.sh (100%) rename files/{ => opt}/setup.sh (100%) diff --git a/Dockerfile b/Dockerfile index 1f4a789..08eb621 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ FROM alpine:3.5 -RUN apk add --no-cache bash file iptables libc6-compat libgcc libstdc++ wget +RUN apk add --no-cache bash ca-certificates file iptables libc6-compat libgcc libstdc++ wget RUN mkdir -p /lib64 && \ ln -s /lib/ld-linux-x86-64.so.2 /lib64/ld-linux-x86-64.so.2 RUN mkdir -p /tmp/f5fpc && \ cd /tmp/f5fpc && \ - wget --no-check-certificate https://vpn.mtu.edu/public/download/linux_sslvpn.tgz && \ + wget https://vpn.mtu.edu/public/download/linux_sslvpn.tgz && \ tar xfz linux_sslvpn.tgz && \ yes "yes" | ./Install.sh && \ rm -rf /tmp/f5fpc -ADD ./files/* /opt/ +ADD ./files/opt/* /opt/ CMD /opt/run.sh diff --git a/files/connect.sh b/files/opt/connect.sh similarity index 100% rename from files/connect.sh rename to files/opt/connect.sh diff --git a/files/idle.sh b/files/opt/idle.sh similarity index 100% rename from files/idle.sh rename to files/opt/idle.sh diff --git a/files/run.sh b/files/opt/run.sh similarity index 100% rename from files/run.sh rename to files/opt/run.sh diff --git a/files/setup.sh b/files/opt/setup.sh similarity index 100% rename from files/setup.sh rename to files/opt/setup.sh