From 6be463299aba1c589f4190120b90554e83bf68fd Mon Sep 17 00:00:00 2001 From: Kyle Ondy Date: Fri, 15 Apr 2016 09:54:23 -0400 Subject: [PATCH] `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. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5688368d..31019432 100644 --- a/Makefile +++ b/Makefile @@ -3,13 +3,13 @@ NAME = tvial/docker-mailserver:$(BRANCH) # all: build-no-cache run fixtures tests clean #all-no-build: run fixtures tests clean -all: build-no-cache +all: build-no-cache build-no-cache: docker build --no-cache -t $(NAME) . build: - docker build --no-cache -t $(NAME) . + docker build -t $(NAME) . run: # Run containers