docker/jams/Makefile

17 lines
224 B
Makefile
Raw Normal View History

2024-08-27 17:09:21 +00:00
VERSION=3.8-1
2021-10-24 22:35:42 +00:00
IMAGE=jams
2022-07-26 15:31:51 +00:00
ifdef REGISTRY
_REGISTRY = $(REGISTRY)/
2021-10-24 22:35:42 +00:00
endif
.PHONY: build push all
build:
2022-07-26 15:31:51 +00:00
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION) .
2021-10-24 22:35:42 +00:00
push:
2022-07-26 15:31:51 +00:00
docker push $(_REGISTRY)$(IMAGE):$(VERSION)
2021-10-24 22:35:42 +00:00
all: build push