Added a build using cache for testing purpose

This commit is contained in:
Thomas VIAL 2016-04-13 21:43:25 +02:00
parent 545922fefa
commit bfa8a41712
1 changed files with 5 additions and 2 deletions

View File

@ -1,9 +1,12 @@
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
NAME = tvial/docker-mailserver:$(BRANCH)
# all: build run fixtures tests clean
# all: build-no-cache run fixtures tests clean
#all-no-build: run fixtures tests clean
all: build
all: build-no-cache
build-no-cache:
docker build --no-cache -t $(NAME) .
build:
docker build --no-cache -t $(NAME) .