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
This commit is contained in:
Nikolas Garofil
2020-08-11 16:23:44 +02:00
parent 1e81324573
commit 6cec4e353c

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: