cjvt-valency/dockerfiles/python-env/Makefile
2019-03-17 17:25:59 +01:00

20 lines
340 B
Makefile

IMAGE_NAME="cjvt-python-env"
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 \
--net host \
$(IMAGE_NAME) \
/bin/bash