.PHONY: build push release nocache
IMAGE = registry.yandex.net/security/molly-collector
VERSION = $(shell date +%Y-%m-%dT%H.%M)

build:
	docker build -t $(IMAGE):$(VERSION) .

push:
	docker push $(IMAGE):$(VERSION)

release: build push

nocache:
	docker build --no-cache=true -t $(IMAGE):$(VERSION) .
