All checks were successful
CodyOps Nucleus Builder / build-conteiner (pull_request) Successful in 51s
16 lines
236 B
Makefile
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)
|