fix(makefile): build native arch instead of always trying to build

building amd64 images on arm/m1 doesn't seem to work anyway
This commit is contained in:
James Reeve 2024-01-05 14:28:43 -05:00
parent 9e0ffef4a1
commit d498adc4fc
No known key found for this signature in database

View file

@ -29,7 +29,7 @@ clean:
.PHONY: build
build:
docker buildx build -t "$(IMAGE_NAME):$(IMAGE_TAG)" . --platform linux/amd64
docker build -t "$(IMAGE_NAME):$(IMAGE_TAG)" .
.PHONY: rendered-manifest.yaml
rendered-manifest.yaml: $(OUT)/rendered-manifest.yaml