mirror of
				https://gitlab.com/alemaire/buildx.git
				synced 2025-01-17 13:58:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			566 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			566 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| NAMESPACE=alemairebe
 | |
| VERSION=0.0.3
 | |
| 
 | |
| IMAGE=matrix-webhook
 | |
| 
 | |
| push: get decompress build
 | |
| 
 | |
| get:
 | |
| 	wget https://github.com/turt2live/matrix-appservice-webhooks/archive/refs/heads/master.zip
 | |
| 
 | |
| decompress:
 | |
| 	unzip master.zip
 | |
| 
 | |
| build:
 | |
| 	docker buildx build --platform linux/amd64,linux/arm64 --push \
 | |
|     	  --cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
 | |
| 	  --cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
 | |
| 	  --tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
 | |
| 	  --tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) \
 | |
| 	  -f Dockerfile matrix-appservice-webhooks-master
 |