Skip to content

Commit

Permalink
Merge pull request #147 from moul/ci-pull-docker
Browse files Browse the repository at this point in the history
chore(ci): pull base image before building images
  • Loading branch information
moul committed Aug 20, 2018
2 parents e050e29 + 8c91e50 commit 158c807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/docker/Makefile
Expand Up @@ -5,7 +5,7 @@ IMAGES ?= android-ci linter protoc
.PHONY: docker.build
docker.build:
for image in $(IMAGES); do \
docker build -t $(DOCKER_NAMESPACE)$$image:$(DOCKER_TAG) -f Dockerfile.$$image .; \
docker build --pull -t $(DOCKER_NAMESPACE)$$image:$(DOCKER_TAG) -f Dockerfile.$$image .; \
done

.PHONY: docker.release
Expand Down

0 comments on commit 158c807

Please sign in to comment.