diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..56f3e39 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: build run + +REPO ?= dorowu/ubuntu-desktop-lxde-vnc +TAG ?= latest + +build: + docker build -t $(REPO):$(TAG) . + +run: + docker run -it --rm -p 6080:80 \ + --name ubuntu-desktop-lxde-test \ + $(REPO):$(TAG) + +shell: + docker exec -it ubuntu-desktop-lxde-test bash