update to support go 1.22 and push to selfhosted repo

This commit is contained in:
2024-06-01 12:41:35 -07:00
parent a8204ad429
commit 955ddf07ff
2 changed files with 18 additions and 3 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
export DOCKER_HOST := ssh://root@nbg1
export DOCKER_IMAGE := sneak/drone-golangci-lint:latest
export REPO := git.eeqj.de/$(DOCKER_IMAGE)
default: build_and_push
build_and_push: build push
login:
docker login git.eeqj.de
build:
docker build -t $(REPO) .
push:
docker push $(REPO)