File size: 222 Bytes
a449269
 
e73c6e8
002382d
 
 
 
 
e73c6e8
 
1
2
3
4
5
6
7
8
9
10
11
# 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"]