yolo11-emotion / Dockerfile
b4one's picture
Update PORT = 7860
002382d verified
raw
history blame contribute delete
222 Bytes
# 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"]