From d4d8238e9144070e3a6709f2bfa84c708fb7e9f1 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Wed, 7 Jul 2021 20:12:32 +0300 Subject: [PATCH] circleci: fix image build with latest alpine Upgrade Docker, see https://discuss.circleci.com/t/unable-to-use-make/40552 https://gitlab.alpinelinux.org/alpine/aports/-/issues/12396 --- .circleci/config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b2353748f..586ea9719 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -97,13 +97,14 @@ jobs: - run: apk update && apk add git make curl tar - checkout - gomod - - setup_remote_docker + - setup_remote_docker: + version: 20.10.6 - run: name: Install Docker client command: | set -x - VER="17.03.0-ce" - curl -L -o /tmp/docker-$VER.tgz https://get.docker.com/builds/Linux/x86_64/docker-$VER.tgz + VER="20.10.6" + curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz tar -xz -C /tmp -f /tmp/docker-$VER.tgz mv /tmp/docker/* /usr/bin - run: make image