File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM nvidia/cuda:10.0-base-ubuntu18.04
33LABEL maintainer="Vincent Prevosto <prevosto@mit.edu>"
44
55# USER root
6- # # Ubuntu package installs
6+ # Ubuntu package installs
77RUN apt update
88RUN apt install -y --no-install-recommends \
99 libfftw3-dev \
@@ -25,6 +25,11 @@ ENV PATH=$CONDA_DIR/bin:$PATH
2525RUN conda update conda && \
2626 conda install conda-build
2727
28+ # make conda activate command available from /bin/bash --login shells
29+ RUN echo ". $CONDA_DIR/etc/profile.d/conda.sh" >> /root/.profile
30+ # make conda activate command available from /bin/bash --interactive shells
31+ RUN conda init bash
32+
2833# Install IBL port of pykilosort
2934RUN git clone -b drift_test_stable https://github.com/kushbanga/pykilosort.git /src/pykilosort
3035WORKDIR /src/pykilosort
Original file line number Diff line number Diff line change 1+ ### Build this image
2+
3+
4+ ### Run container
5+ docker run --rm --gpus all pykilosort
You can’t perform that action at this time.
0 commit comments