dlrl2025-docker / justfile
Greg Burlet
initial commit
62139b4
raw
history blame contribute delete
214 Bytes
build:
docker build -t fastapi .
start:
docker compose up -d
stop:
docker compose down
api:
curl -X POST "http://localhost:7860/predict" -F "file=@/Users/gregburlet/Projects/DLRL2025/hotdog.jpg"