1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-07 16:06:14 +00:00

remove --pull again from Makefile (#162)

doing docker build --pull messes with chained builds (base -> php -> webapp)

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2019-05-27 08:06:34 +02:00 committed by GitHub
parent e4b391be4f
commit b1b04859dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,6 @@ ifdef TRAVIS
docker pull $(docker_repo)/kopano_$(component):builder || true docker pull $(docker_repo)/kopano_$(component):builder || true
endif endif
docker build \ docker build \
--pull \
--build-arg docker_repo=${docker_repo} \ --build-arg docker_repo=${docker_repo} \
--build-arg KOPANO_CORE_VERSION=${core_download_version} \ --build-arg KOPANO_CORE_VERSION=${core_download_version} \
--build-arg KOPANO_$(COMPONENT)_VERSION=${$(component)_download_version} \ --build-arg KOPANO_$(COMPONENT)_VERSION=${$(component)_download_version} \
@ -102,6 +101,7 @@ endif
-t $(docker_repo)/kopano_$(component):builder $(component)/ -t $(docker_repo)/kopano_$(component):builder $(component)/
build-base: build-base:
docker pull debian:stretch
component=base make build component=base make build
build-core: build-base build-core: build-base