12 lines
		
	
	
		
			249 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			249 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
YYYYMMDD := $(shell date +%Y%m%d)
 | 
						|
 | 
						|
default: build
 | 
						|
 | 
						|
build:
 | 
						|
	script -q ./build.log docker build --no-cache -t sneak/sandbox .
 | 
						|
	docker tag sneak/sandbox sneak/sandbox:$(YYYYMMDD)
 | 
						|
 | 
						|
push:
 | 
						|
	docker push sneak/sandbox
 | 
						|
	docker push sneak/sandbox:$(YYYYMMDD)
 |