From 54c550420b7aea8e7fbee3fe26efd50f320f24f6 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 6 May 2023 11:50:59 -0700 Subject: [PATCH] Added Docker image for linux/arm64 - closes #115 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5925992..7580cac 100644 --- a/Makefile +++ b/Makefile @@ -62,4 +62,4 @@ dist: .PHONY: docker docker: - docker build --pull --no-cache --platform linux/amd64 -t ankane/pgvector:latest . + docker buildx build --push --pull --no-cache --platform linux/amd64,linux/arm64 -t ankane/pgvector:latest .