14 lines
210 B
Makefile
14 lines
210 B
Makefile
.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
|