devops-test-app/app/Makefile
DaemonGloom bcc15a8b7b
Some checks failed
Docker image build / Build docker image (push) Failing after 43s
Revert app name for publishing
2024-08-05 16:35:59 +05:00

18 lines
330 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/test-app:$(version)
publish:
docker push daemongit.dyndns.info/just_a_test/test-app:$(version)