DaemonGloom
be357c7c96
Some checks failed
Docker image build / Build docker image (push) Failing after 1m5s
18 lines
352 B
Makefile
18 lines
352 B
Makefile
.PHONY: start build publish
|
|
|
|
export GOBIN=${CURDIR}/bin
|
|
|
|
version ?= master
|
|
|
|
$(GOBIN)/air:
|
|
go install github.com/air-verse/air@latest
|
|
|
|
start: $(GOBIN)/air
|
|
$(GOBIN)/air
|
|
|
|
build:
|
|
docker build . --tag daemongit.dyndns.info/just_a_test/devops-test-app:$(version) --debug
|
|
|
|
publish:
|
|
docker push daemongit.dyndns.info/just_a_test/devops-test-app:$(version)
|