Dockerfile 569 Bytes
Newer Older
1
2
3
ARG PYTORCH="1.3"
ARG CUDA="10.1"
ARG CUDNN="7"
Kai Chen's avatar
Kai Chen committed
4
5
6

FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel

7
8
9
10
ENV TORCH_CUDA_ARCH_LIST="6.0 6.1 7.0+PTX"
ENV TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../"

Yan's avatar
Yan committed
11
12
13
RUN apt-get update && apt-get install -y libglib2.0-0 libsm6 libxrender-dev libxext6 \
 && apt-get clean \
 && rm -rf /var/lib/apt/lists/*
Kai Chen's avatar
Kai Chen committed
14

WXinlong's avatar
WXinlong committed
15
# Install SOLO
Yan's avatar
Yan committed
16
RUN conda install cython -y && conda clean --all
WXinlong's avatar
WXinlong committed
17
18
RUN git clone https://github.com:WXinlong/SOLO.git /SOLO
WORKDIR /SOLO
Yan's avatar
Yan committed
19
RUN pip install --no-cache-dir -e .