# Pull pre-built image from Docker Hub FROM b4one/yolo11-emotion:latest # Expose the FastAPI port (7860) EXPOSE 7860 # Run the FastAPI app on port 7860 CMD ["uvicorn", "app:api", "--host", "0.0.0.0", "--port", "7860"]