| 1234567891011121314151617181920212223 |
- NAME = osixia/openldap
- VERSION = 1.0.9
- .PHONY: all build build-nocache test tag_latest release
- all: build
- build:
- docker build -t $(NAME):$(VERSION) --rm image
- build-nocache:
- docker build -t $(NAME):$(VERSION) --no-cache --rm image
- test:
- env NAME=$(NAME) VERSION=$(VERSION) bats test/test.bats
- tag_latest:
- docker tag -f $(NAME):$(VERSION) $(NAME):latest
- release: build test tag_latest
- @if ! docker images $(NAME) | awk '{ print $$2 }' | grep -q -F $(VERSION); then echo "$(NAME) version $(VERSION) is not yet built. Please run 'make build'"; false; fi
- docker push $(NAME)
- @echo "*** Don't forget to run 'twgit release/hotfix finish' :)"
|