nucleus/Makefile
Luciano Giacchetta 79fb069353
All checks were successful
CodyOps Nucleus Builder / build-conteiner (pull_request) Successful in 51s
#1 - Agregar builder para CI y algunos ajustes extras
2025-07-03 16:22:44 -03:00

16 lines
236 B
Makefile

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)