CoolFace
Apppublic

christopher/facets-overview

sourceHugging Faceupdated 5y agoView on Hugging Face
5likes
Makefile14 linesDownload Raw Back to root
1VERSION := 0.0.12NAME := facets-dive3REPO := cakiki4 5build:6	docker build -f Dockerfile -t ${REPO}/${NAME}:${VERSION} -t ${REPO}/${NAME}:latest .7 8run: build9	docker run --rm -it -p 8888:8888 --mount type=bind,source=${PWD},target=/home/jovyan/work --name ${NAME} --workdir=/home/jovyan/work ${REPO}/${NAME}:${VERSION}10 11push: build12	docker push ${REPO}/${NAME}:${VERSION} && docker push ${REPO}/${NAME}:latest13 14