yolov8-pose-api / Dockerfile
unfinity
pip install uvicorn
3a9708b
raw
history blame
163 Bytes
FROM nvcr.io/nvidia/pytorch:23.12-py3
WORKDIR /code
RUN pip install uvicorn fastapi
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]