diff --git a/support/Dockerfile b/support/Dockerfile new file mode 100644 index 0000000..51a7826 --- /dev/null +++ b/support/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine:latest + +ADD motd.txt / diff --git a/support/Makefile b/support/Makefile new file mode 100644 index 0000000..66a30c8 --- /dev/null +++ b/support/Makefile @@ -0,0 +1,8 @@ +REGISTRY=localhost:5000 +IMAGE=contaminate-test +LABEL=latest + +container: motd.txt Dockerfile + docker build -t $(REGISTRY)/$(IMAGE):$(LABEL) . + +.PHONY: container diff --git a/support/motd.txt b/support/motd.txt new file mode 100644 index 0000000..10ddd6d --- /dev/null +++ b/support/motd.txt @@ -0,0 +1 @@ +Hello!