~dricottone/container-images

ref: e75d58be86199cedfca46c093b45f8463052a9a4 container-images/srht-meta-webhooks/Makefile -rw-r--r-- 239 bytes
e75d58beDominic Ricottone Re-fixing encryption 1 year, 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
CONMAN=sudo docker

REGISTRY=registry.intra.dominic-ricottone.com
IMAGE=srht-meta-webhooks
TAG=latest

image:
	$(CONMAN) buildx build --push \
		--platform linux/arm64,linux/amd64 \
		--tag $(REGISTRY)/$(IMAGE):$(TAG) \
		.

.PHONY: image