Improved Docker tasks [skip ci]

This commit is contained in:
Andrew Kane
2023-05-06 12:11:10 -07:00
parent db8ed738b8
commit 74a3cd597f

View File

@@ -59,13 +59,13 @@ dist:
mkdir -p dist
git archive --format zip --prefix=$(EXTENSION)-$(EXTVERSION)/ --output dist/$(EXTENSION)-$(EXTVERSION).zip master
.PHONY: docker-local
.PHONY: docker
docker-local:
docker build --pull --no-cache --platform linux/amd64 -t ankane/pgvector:local .
docker:
docker build --pull --no-cache --platform linux/amd64 -t ankane/pgvector:latest .
.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 .
docker buildx build --push --platform linux/amd64,linux/arm64 -t ankane/pgvector:v$(EXTVERSION) .