This commit is contained in:
Yannick Reiss
2025-06-24 07:19:48 +02:00
commit 4aa2107075
5 changed files with 104 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
PROVIDER = docker
UNAME = ninachloe
IMAGE = orfs_compact
LABEL = latest
.PHONY: build
build:
$(PROVIDER) build -t $(UNAME)/$(IMAGE):$(LABEL) .
.PHONY: run
run:
$(PROVIDER) run --rm -it --hostname $(IMAGE) --name $(UNAME)_testrun $(UNAME)/$(IMAGE):$(LABEL) "/bin/bash"
.PHONY: publish
publish: build
$(PROVIDER) push $(UNAME)/$(IMAGE):$(LABEL)
$(PROVIDER) rmi $(IMAGE)