13 lines
		
	
	
		
			336 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			336 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: all force-build build push
 | |
| 
 | |
| all: build
 | |
| 
 | |
| force-build:
 | |
| 	docker build --no-cache -t focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest .
 | |
| 
 | |
| build:
 | |
| 	docker build -t focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest .
 | |
| 
 | |
| push:
 | |
| 	docker push focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest
 |