Skip to content

Commit

Permalink
Change rebuild target
Browse files Browse the repository at this point in the history
* --no-cache is needed to guarantee a full rebuild from scratch
* --force-rm is not needed because rebuild calls the stop target
  • Loading branch information
ngaro committed Aug 11, 2020
1 parent 0b5333c commit fb0c0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exec:
build: stop .FORCE
docker-compose build
rebuild: stop .FORCE
docker-compose build --force-rm
docker-compose build --no-cache
stop:
docker stop handson-ml2 || true; docker rm handson-ml2 || true;
.FORCE:

0 comments on commit fb0c0de

Please sign in to comment.