Dockerfile 418 Bytes
Newer Older
Michael Carilli's avatar
Michael Carilli committed
1
2
# Base image must at least have nvcc and CUDA installed.
FROM <base>
3
4
5
6
7
8
9
10
11
WORKDIR /workspace
# uninstall Apex if present
RUN pip uninstall -y apex || :
# SHA is something the user can alter to force recreation of this Docker layer, 
# and therefore force cloning the latest version of Apex
RUN SHA=43d1ae08 git clone https://github.com/NVIDIA/apex.git
WORKDIR /workspace/apex
RUN python setup.py install
WORKDIR /workspace