From ee9a0c5681bd2e37354c70dceb2969ee6a70697e Mon Sep 17 00:00:00 2001 From: J0WI Date: Mon, 1 Jul 2019 14:58:03 +0200 Subject: [PATCH] Enhance installation of docker cli Signed-off-by: J0WI --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2bbaad3..87f0988 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,12 @@ LABEL \ # Switch to the HTTPS endpoint for the apk repositories # https://github.com/gliderlabs/docker-alpine/issues/184 -RUN \ - sed -i 's/http\:\/\/dl-cdn.alpinelinux.org/https\:\/\/alpine.global.ssl.fastly.net/g' /etc/apk/repositories && \ +RUN set -eux; \ + sed -i 's!http://dl-cdn.alpinelinux.org/!https://alpine.global.ssl.fastly.net/!g' /etc/apk/repositories && \ apk add --no-cache \ iproute2 \ - docker \ - dumb-init && \ - rm -rf /usr/bin/docker?* + docker-cli \ + dumb-init COPY ./*.sh /usr/local/bin/ COPY ./tests/*.sh /usr/local/bin/tests/