This commit is contained in:
Andreas Neue 2026-02-03 09:29:37 +01:00
commit c89d84b38f
5 changed files with 145 additions and 0 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
.PHONY: build shell
DOCKER_IMAGE := dr.dnix.de/inspircd
all: build push
build:
docker build --no-cache -f Dockerfile -t $(DOCKER_IMAGE) .
push:
docker push $(DOCKER_IMAGE)
shell: build
docker run --rm -it $(DOCKER_IMAGE) bash