REGISTRY := registry.gitlab.ost.ch:45023/distributed-systems/art-gallery

build-pipeline:
	docker pull "$(REGISTRY)/ci:latest" || true
	docker build --compress --cache-from "$(REGISTRY)/ci:latest" --tag "$(REGISTRY)/ci:latest" .gitlab/ci/docker

push-pipeline: build-pipeline
	docker push "$(REGISTRY)/ci:latest"
