Skip to content

Commit

Permalink
This dockerfile finally builds correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
pgunn committed Feb 12, 2019
1 parent b10d147 commit 0c3b07d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM continuumio/anaconda3

RUN conda config --set always_yes yes
RUN conda update --yes conda
RUN mkdir src && cd src && git clone -b dev https://github.com/flatironinstitute/CaImAn.git && cd CaImAn && conda env create -n caiman -f environment.yml && source activate caiman && pip install .
RUN source activate caiman && caimanmanager.py install
RUN apt-get install -y gcc g++ libgl1
RUN mkdir src && cd src && git clone -b dev https://github.com/flatironinstitute/CaImAn.git && cd CaImAn && conda env create -n caiman -f environment.yml && conda install --override-channels -c conda-forge -n caiman pip
RUN /bin/bash -c "cd src/CaImAn && source activate caiman && /opt/conda/envs/caiman/bin/pip install ."
RUN /bin/bash -c "source activate caiman && caimanmanager.py install"

0 comments on commit 0c3b07d

Please sign in to comment.