From 36ecfabd563e94f315eed0d4e8a8c92364480bb5 Mon Sep 17 00:00:00 2001 From: patst Date: Fri, 24 Jan 2020 20:17:29 +0100 Subject: [PATCH] install yq, jq and unzip --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 532b257..7418734 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ FROM gitlab/gitlab-runner:ubuntu-v12.4.0 RUN apt-get update && \ - apt install -y openvpn && \ + apt install -y openvpn zip unzip jq && \ rm -rf /var/lib/apt/lists/* - +RUN curl --location "https://github.com/mikefarah/yq/releases/download/2.4.1/yq_linux_amd64" -o yq && \ + chmod +x yq + COPY register.sh / RUN chmod +x /register.sh COPY vpn-init.sh /