Parlay / scripts /push_docker.sh
sh4shv4t's picture
Add pre-training audit scripts, OpenEnv manifest, and tune Parlay training/env (GRPO 1.5B default, min-reward filters, weighted data gen, hiring ZOPA+drift, veteran/opponent prompts, Docker/docs)
df724f2
#!/bin/bash
# Usage: ./scripts/push_docker.sh <dockerhub-username> <tag>
USERNAME=${1:-yourusername}
TAG=${2:-latest}
docker build -t $USERNAME/parlay:$TAG .
docker push $USERNAME/parlay:$TAG
echo "Pushed $USERNAME/parlay:$TAG"
echo "For HF Spaces: set Dockerfile app_port to 7860 and push repo to huggingface.co/spaces/$USERNAME/parlay"