.PHONY: all build push-latest

all: build push-latest

build:
	docker build -t security/base/distroless .

push-latest:
	docker tag security/base/distroless registry.yandex.net/security/base/distroless:latest
	docker push "registry.yandex.net/security/base/distroless:latest"
	@echo
	@echo "Well done!"
	@echo "Uploaded: registry.yandex.net/security/base/distroless:latest"
