aaronpeikert / repro

Easy Setup of a Reproducible Workflow
GNU General Public License v3.0
33 stars 7 forks source link

`make rebuild` does not pull the base image #80

Open aaronpeikert opened 3 years ago

aaronpeikert commented 3 years ago
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.

aaronpeikert commented 3 years ago

https://github.com/aaronpeikert/repro-tutorial/issues/79