should work with CI now, untested

This commit is contained in:
2020-09-20 15:45:35 -07:00
parent 80465e3f1f
commit 905082c769
3 changed files with 38 additions and 4 deletions

View File

@@ -59,22 +59,22 @@ test: lint build-docker-image
is_uncommitted:
git diff --exit-code >/dev/null 2>&1
build-docker-image: clean
docker-build:
docker build -t $(IMAGENAME) .
build-docker-image-dist: is_uncommitted clean
docker build -t $(IMAGENAME):$(VERSION) -t $(IMAGENAME):latest -t $(IMAGENAME):$(BUILDTIMETAG) .
dist: lint build-docker-image
dist: lint docker-build
-mkdir -p ./output
docker run --rm --entrypoint cat $(IMAGENAME) /bin/$(FN) > output/$(FN)
docker save $(IMAGENAME) | bzip2 > output/$(BUILDTIMEFILENAME).$(FN).tbz2
hub: upload-docker-image
upload-docker-image: build-docker-image
upload-docker-image: docker-build
docker push $(IMAGENAME):$(VERSION)
docker push $(IMAGENAME):$(BUILDTIMETAG)
docker push $(IMAGENAME):latest
.PHONY: build fmt test is_uncommitted build-docker-image dist hub upload-docker-image clean run rundebug default build-docker-image-dist
.PHONY: build fmt test is_uncommitted docker-build dist hub upload-docker-image clean run rundebug default build-docker-image-dist