This commit is contained in:
Andreas Neue 2026-02-03 09:49:58 +01:00
commit 1deee3d43a
10 changed files with 95 additions and 0 deletions

14
Makefile Normal file
View file

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