diff options
author | 2020-08-23 11:56:07 +0300 | |
---|---|---|
committer | 2020-08-24 15:04:18 +0200 | |
commit | 5e5f0d2c644f3cc5985d82991de0a0ce66db5d77 (patch) | |
tree | bec8b3b356c8e3f597a7eee4becebb6b7bf721e9 | |
parent | Remove deprecated `sudo` key (diff) | |
download | docker-images-5e5f0d2c644f3cc5985d82991de0a0ce66db5d77.tar.gz docker-images-5e5f0d2c644f3cc5985d82991de0a0ce66db5d77.tar.bz2 docker-images-5e5f0d2c644f3cc5985d82991de0a0ce66db5d77.zip |
Fix x86-glibc stage3 builds
Closes: #85
Signed-off-by: Konstantinos Smanis <konstantinos.smanis@gmail.com>
Closes: https://github.com/gentoo/gentoo-docker-images/pull/87
Signed-off-by: Alexys Jacob <ultrabug@gentoo.org>
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 7269f98..874e1ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,9 @@ env: - TARGET=stage3-ppc64le before_install: - # Install docker 17.05.0 or later + # Install latest Docker + - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - + - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt-get update -qq - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce - echo '{"experimental":true}' | sudo tee /etc/docker/daemon.json |