19 lines
		
	
	
		
			401 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			401 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
export DOCKER_HOST := ssh://root@nbg1
 | 
						|
export DOCKER_IMAGE := sneak/drone-golangci-lint
 | 
						|
export REPO := git.eeqj.de/$(DOCKER_IMAGE)
 | 
						|
export TODAY := $(shell date -Idate -u)
 | 
						|
 | 
						|
default: build_and_push
 | 
						|
 | 
						|
build_and_push: build push
 | 
						|
 | 
						|
login:
 | 
						|
	docker login git.eeqj.de
 | 
						|
 | 
						|
build:
 | 
						|
	docker build --progress plain -t $(REPO):latest -t $(REPO):$(TODAY) .
 | 
						|
 | 
						|
push:
 | 
						|
	docker push $(REPO):latest
 | 
						|
	docker push $(REPO):$(TODAY)
 |