repro
repro copied to clipboard
`make rebuild` does not pull the base image
rebuild:
docker build --no-cache -t $(PROJECT) .
Should be:
docker build --no-cache --pull -t $(PROJECT) .
Then the most recent version of the base image gets used.
https://github.com/aaronpeikert/repro-tutorial/issues/79