mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-30 20:22:24 +01:00
15 lines
265 B
Makefile
15 lines
265 B
Makefile
.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
|