From b3f67bb8c6289c43a38865ff3abf36f5eef80c4c Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 8 Jan 2019 20:09:32 +0100 Subject: [PATCH] Fix git pull in docker-image --- build_helpers/publish_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_helpers/publish_docker.sh b/build_helpers/publish_docker.sh index 9d82fc2d5..7a8127c44 100755 --- a/build_helpers/publish_docker.sh +++ b/build_helpers/publish_docker.sh @@ -13,7 +13,7 @@ if [ "${TRAVIS_EVENT_TYPE}" = "cron" ]; then else echo "event ${TRAVIS_EVENT_TYPE}: building with cache" # Pull last build to avoid rebuilding the whole image - docker pull ${REPO}:${TAG} + docker pull ${IMAGE_NAME}:${TAG} docker build --cache-from ${IMAGE_NAME}:${TAG} -t freqtrade:${TAG} . fi