我希望这是我的过程中的一个问题,因为我对Docker来说比较新。
我做以下
$ cd to /path/with_dockerfile
# Build the image, produces imaged with Id 8a91e7fe5373
$ docker build .
# Save the image to a tarball
$ docker save -o /tmp/image.tar 8a91e7fe5373
# Delete the image, not the tarball
$ docker image rm 8a91e7fe5373 --force
# Load the tarball image
$ docker load -i /tmp/image.tar
# Rerun docker build
$ docker build .
在最后一步中,我希望构建使用缓存,它不会! docker build sooks就像第一个docker build一样。我错过了什么?