`make build` builds with cache

As `make build-no-cache` was added, it seems appropriate that `make
build` should build with the cache, so I have removed the `--no-cache`
option.
This commit is contained in:
Kyle Ondy 2016-04-15 09:54:23 -04:00
parent 0674196ef9
commit 6be463299a
No known key found for this signature in database
GPG Key ID: 8D6B17000513440D
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ build-no-cache:
docker build --no-cache -t $(NAME) . docker build --no-cache -t $(NAME) .
build: build:
docker build --no-cache -t $(NAME) . docker build -t $(NAME) .
run: run:
# Run containers # Run containers