cjvt-valency/dockerfiles/python-env/Makefile

20 lines
340 B
Makefile
Raw Normal View History

2019-03-17 16:25:59 +00:00
IMAGE_NAME="cjvt-python-env"
2019-03-10 21:11:18 +00:00
all: build run
build:
docker build . -t $(IMAGE_NAME)
run:
docker run \
-it \
-v /home/${USER}:/home/${USER} \
--user $(shell id -u):$(shell id -g) \
-v /etc/passwd:/etc/passwd \
-v /etc/group:/etc/group \
-v $(MAKE_ROOT):/project \
-w /project \
2019-03-17 16:25:59 +00:00
--net host \
2019-03-10 21:11:18 +00:00
$(IMAGE_NAME) \
/bin/bash