nucleus/Makefile

16 lines
236 B
Makefile
Raw Normal View History

REGISTRY:= gianet.us/codyops
IMAGE:= nucleus
.PHONY: init build setup
init:
direnv allow .
setup:
npm run setup
build: setup
npm run build
podman build --pull=newer --tag $(REGISTRY)/$(IMAGE) .
podman push $(REGISTRY)/$(IMAGE)