serene-golang-implementation/bootstrap/Makefile

10 lines
275 B
Makefile

BOOTSTRAP_TAG ?= latest
BOOTSTRAP_DIR = $(ROOT_DIR)/bootstrap
compile-bootstrap:
echo ">>>>>>>>>>> $(BOOTSTRAP_DIR)"
docker build -t serene-lang/serene-bootstrap:$(BOOTSTRAP_TAG) $(BOOTSTRAP_DIR)
clean-bootstrap:
docker rmi serene-lang/serene-bootstrap:$(BOOTSTRAP_TAG)