Spaces:
Runtime error
Runtime error
File size: 229 Bytes
3fad000 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM pytorch/pytorch:2.0.0-cuda11.7-cudnn8-devel
COPY . /dinov2
WORKDIR /dinov2
RUN pip install -r requirements.txt
RUN pip install -r requirements-extras.txt
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|