container-images/jupyter/Makefile
Vincent Batts cabdd3adae
jupyter: looking what this jupyter thing folks are talking about
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2024-04-02 16:08:17 -04:00

17 lines
253 B
Makefile

IMAGE_NAME := jupyter
default: run
.PHONY: build
build: Dockerfile
docker build --pull -t $(IMAGE_NAME) .
data:
mkdir -p $@
run: build data
docker run -it --rm -v $(pwd)/data:/data -p 8888:8888 $(IMAGE_NAME)
clean:
docker rmi -f $(IMAGE_NAME)