docker build with --pull and --cache-from ignores pulled ...
github.com › moby › mobyWhen using --cache-from the build uses cache even though --pull supplied newer image. Steps to reproduce the issue: Have a Dockerfile with FROM php:7; Build the container docker build; Push the build container as my:cache; Build this on travis using docker build --cache-from my:cache; Works as expected - all layers are reused from cache