Update dependencies

This commit is contained in:
Martin Šalata
2022-06-06 12:39:54 +02:00
parent dd5766f1bb
commit 8f3e13a2c4
7 changed files with 1554 additions and 46 deletions
+17
View File
@@ -59,6 +59,23 @@ docker-images:
docker-push:
@docker push $(IMAGE_PREFIX)-$(NAME):$(VERSION)
#######################################################
# Rules related to Containerd image build and release #
#######################################################
.PHONY: containerd-login
containerd-login:
@echo "$(DOCKER_PASS)" | nerdctl login -u "$(DOCKER_USER)" --password-stdin
.PHONY: containerd-images
containerd-images:
@nerdctl build -t $(IMAGE_PREFIX)-$(NAME):$(VERSION) -f Dockerfile -m 6g --target $(EXTENSION_PREFIX)-$(NAME) .
@nerdctl build -t $(IMAGE_PREFIX)-$(NAME):latest -f Dockerfile -m 6g --target $(EXTENSION_PREFIX)-$(NAME) .
.PHONY: containerd-push
containerd-push:
@nerdctl push $(IMAGE_PREFIX)-$(NAME):$(VERSION)
#####################################################################
# Rules for verification, formatting, linting, testing and cleaning #
#####################################################################