From db8ed738b888bff56d5fea782eceddbb10c5db1d Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 6 May 2023 11:59:46 -0700 Subject: [PATCH] Split Docker tasks [skip ci] --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7580cac..75799e2 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,13 @@ dist: mkdir -p dist git archive --format zip --prefix=$(EXTENSION)-$(EXTVERSION)/ --output dist/$(EXTENSION)-$(EXTVERSION).zip master -.PHONY: docker +.PHONY: docker-local -docker: +docker-local: + docker build --pull --no-cache --platform linux/amd64 -t ankane/pgvector:local . + +.PHONY: docker-release + +docker-release: docker buildx build --push --pull --no-cache --platform linux/amd64,linux/arm64 -t ankane/pgvector:latest . + docker buildx build --push --platform linux/amd64,linux/arm64 -t ankane/pgvector:v0.4.1 .