yolov8-pose-api / Dockerfile
unfinity
add reqs
4ca2511
raw
history blame
262 Bytes
FROM nvcr.io/nvidia/pytorch:23.12-py3
WORKDIR /code
RUN pip install ultralytics
RUN pip install opencv-python==4.6.0.66
RUN pip install Pillow==10.3.0
RUN pip install uvicorn fastapi
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]