Chess_Engine / docker-entrypoint.sh
electro-sb's picture
Containerization and frontend backend communication issue fixed
d086f83
#!/bin/sh
# Add /usr/games to PATH so stockfish can be found
export PATH=$PATH:/usr/games
echo "Starting backend server..."
# Start the backend server (this will serve both the API and the frontend)
exec python -m uvicorn app:app --host 0.0.0.0 --port 8000