Change rebuild target

* --no-cache is needed to guarantee a full rebuild from scratch
* --force-rm is not needed because rebuild calls the stop target
main
Nikolas Garofil 2020-08-11 16:23:44 +02:00
parent 1e81324573
commit 6cec4e353c
1 changed files with 1 additions and 1 deletions

View File

@ -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: