1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-09 00:46:25 +00:00

make build-simple also phony

add default target

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2019-02-09 09:47:00 +01:00
parent db7d042599
commit 7451d13f83

View File

@ -47,6 +47,7 @@ build:
--build-arg ADDITIONAL_KOPANO_WEBAPP_PLUGINS="$(ADDITIONAL_KOPANO_WEBAPP_PLUGINS)" \ --build-arg ADDITIONAL_KOPANO_WEBAPP_PLUGINS="$(ADDITIONAL_KOPANO_WEBAPP_PLUGINS)" \
-t $(docker_repo)/kopano_$(component) $(component)/ -t $(docker_repo)/kopano_$(component) $(component)/
.PHONY: build-simple
build-simple: component ?= ssl build-simple: component ?= ssl
build-simple: build-simple:
docker build -t $(docker_repo)/kopano_$(component) $(component)/ docker build -t $(docker_repo)/kopano_$(component) $(component)/
@ -57,7 +58,7 @@ build-base:
build-core: build-core:
component=core make build component=core make build
build-utils: build-utils: build-core
component=utils make build component=utils make build
build-webapp: build-webapp:
@ -179,3 +180,5 @@ test-quick:
test-stop: test-stop:
docker-compose -f $(COMPOSE_FILE) stop || true docker-compose -f $(COMPOSE_FILE) stop || true
default: build-all