Compare commits
No commits in common. "v1.6" and "v1.13" have entirely different histories.
11
Dockerfile
11
Dockerfile
|
@ -1,5 +1,4 @@
|
|||
FROM mingzailao/cuda:10.1-cudnn7-devel-ubuntu18.04
|
||||
|
||||
FROM mingzailao/cuda:11.7.0-cudnn8-devel-ubuntu18.04
|
||||
|
||||
RUN rm /usr/bin/python3
|
||||
RUN ln -s /usr/bin/python3.8 /usr/bin/python3
|
||||
|
@ -7,9 +6,13 @@ RUN ln -s /usr/bin/python3 /usr/bin/python
|
|||
RUN apt-get install build-essential libatlas-base-dev gfortran -y
|
||||
RUN pip3 install Cython
|
||||
RUN pip3 install --upgrade pip
|
||||
COPY ./torch-whl/torch-1.13.1+cu117-cp38-cp38-linux_x86_64.whl /torch-whl/torch-1.13.1+cu117-cp38-cp38-linux_x86_64.whl
|
||||
COPY ./torch-whl/torchvision-0.14.1+cu117-cp38-cp38-linux_x86_64.whl /torch-whl/torchvision-0.14.1+cu117-cp38-cp38-linux_x86_64.whl
|
||||
COPY ./torch-whl/torchaudio-0.13.1+cu117-cp38-cp38-linux_x86_64.whl /torch-whl/torchaudio-0.13.1+cu117-cp38-cp38-linux_x86_64.whl
|
||||
RUN pip3 install ./torch-whl/torch-1.13.1+cu117-cp38-cp38-linux_x86_64.whl
|
||||
RUN pip3 install ./torch-whl/torchvision-0.14.1+cu117-cp38-cp38-linux_x86_64.whl
|
||||
RUN pip3 install ./torch-whl/torchaudio-0.13.1+cu117-cp38-cp38-linux_x86_64.whl
|
||||
|
||||
|
||||
COPY ./torch-whl/torch-1.6.0+cu101-cp38-cp38-linux_x86_64.whl /torch-whl/torch-1.6.0+cu101-cp38-cp38-linux_x86_64.whl
|
||||
|
||||
|
||||
RUN pip3 install ./torch-whl/torch-1.6.0+cu101-cp38-cp38-linux_x86_64.whl
|
||||
|
|
Loading…
Reference in New Issue