Skip to content

Commit 9e60848

Browse files
committed
chore: add Makefile
1 parent 91a76e7 commit 9e60848

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: build run
2+
3+
REPO ?= dorowu/ubuntu-desktop-lxde-vnc
4+
TAG ?= latest
5+
6+
build:
7+
docker build -t $(REPO):$(TAG) .
8+
9+
run:
10+
docker run -it --rm -p 6080:80 \
11+
--name ubuntu-desktop-lxde-test \
12+
$(REPO):$(TAG)
13+
14+
shell:
15+
docker exec -it ubuntu-desktop-lxde-test bash

0 commit comments

Comments
 (0)