Stop pulling unnecessary image during build
This commit is contained in:
parent
45fe91dc9b
commit
c86e15596b
1 changed files with 1 additions and 2 deletions
|
@ -16,9 +16,8 @@ tasks:
|
|||
docker login -u crocmagnon --password-stdin < .docker-secret
|
||||
cd blog
|
||||
docker pull crocmagnon/blog:latest || true
|
||||
docker pull crocmagnon/blog:tests || true
|
||||
docker build --pull --cache-from crocmagnon/blog:latest -t crocmagnon/blog:latest -f Dockerfile .
|
||||
docker build --cache-from crocmagnon/blog:tests -t crocmagnon/blog:tests -f tests.Dockerfile .
|
||||
docker build -t crocmagnon/blog:tests -f tests.Dockerfile .
|
||||
docker run --rm -t crocmagnon/blog:tests /app/docker/runtests.sh
|
||||
docker push crocmagnon/blog:latest
|
||||
docker push crocmagnon/blog:tests
|
||||
|
|
Reference in a new issue