Commit aa046d27 authored by John Chodera's avatar John Chodera
Browse files

Add Dockerfile

parent 3bd2083a
Loading
Loading
Loading
Loading

Dockerfile

0 → 100644
+15 −0
Original line number Diff line number Diff line
FROM nvidia/cuda

# Install miniconda
RUN apt-get update && apt-get install -y wget
RUN MINICONDA="Miniconda2-latest-Linux-x86_64.sh" && \
    wget --quiet https://repo.continuum.io/miniconda/$MINICONDA && \
    bash $MINICONDA -b -p /miniconda && \
    rm -f $MINICONDA
ENV PATH /miniconda/bin:$PATH

# Add omnia
RUN conda config --add channels omnia

# Install deepchem
RUN conda install --yes deepchem