19 lines
486 B
Docker
19 lines
486 B
Docker
FROM mingzailao/cuda:10.1-cudnn7-devel-ubuntu18.04
|
|
|
|
RUN rm /usr/bin/python3
|
|
RUN ln -s /usr/bin/python3.8 /usr/bin/python3
|
|
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.7.0+cu101-cp38-cp38-linux_x86_64.whl /torch-whl/torch-1.7.0+cu101-cp38-cp38-linux_x86_64.whl
|
|
|
|
|
|
RUN pip3 install ./torch-whl/torch-1.7.0+cu101-cp38-cp38-linux_x86_64.whl
|
|
|
|
|
|
|
|
|