Fix git pull in docker-image

This commit is contained in:
Matthias 2019-01-08 20:09:32 +01:00
parent d29c294f6a
commit b3f67bb8c6
1 changed files with 1 additions and 1 deletions

View File

@ -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