example / makefile
jessehostetler's picture
Fix docker image not working in kubernetes. Fix int width not set in input scherma. Add makefile and test image.
be5bf87
raw
history blame
349 Bytes
.PHONY: download
download:
bash scripts/model_download.bash
.PHONY: build
build:
docker build -t safe-challenge-2025/example-submission:latest .
.PHONY: run
run:
docker run -d --name example-submission -p 8000:8000 safe-challenge-2025/example-submission:latest
.PHONY: stop
stop:
docker stop example-submission && docker rm example-submission