Bake docker-ce into the base image

Speeds up CI runs by quite a bit
This commit is contained in:
yuvipanda
2018-07-11 10:02:07 -07:00
parent 20f3116e58
commit 4d9d9c2d99
4 changed files with 54 additions and 24 deletions

View File

@@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: continuumio/miniconda3:4.5.4
- image: jupyterhub/tljh-circleci-base-image:6fe5372
working_directory: ~/repo
@@ -34,29 +34,6 @@ jobs:
# Run full installer test
- setup_remote_docker
- run:
#FIXME: Bake this into the base image
name: install docker
command: |
apt-get update
apt-get install --yes \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable"
apt-get update
apt-get install --yes docker-ce
- run:
name: build systemd image
command: |