Skip to content

Commit 0aacd3b

Browse files
committed
test mods
1 parent 3b8b8a4 commit 0aacd3b

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

pykilosort/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM nvidia/cuda:10.0-base-ubuntu18.04
33
LABEL maintainer="Vincent Prevosto <prevosto@mit.edu>"
44

55
# USER root
6-
# # Ubuntu package installs
6+
# Ubuntu package installs
77
RUN apt update
88
RUN apt install -y --no-install-recommends \
99
libfftw3-dev \
@@ -25,6 +25,11 @@ ENV PATH=$CONDA_DIR/bin:$PATH
2525
RUN 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
2934
RUN git clone -b drift_test_stable https://github.com/kushbanga/pykilosort.git /src/pykilosort
3035
WORKDIR /src/pykilosort

pykilosort/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### Build this image
2+
3+
4+
### Run container
5+
docker run --rm --gpus all pykilosort

0 commit comments

Comments
 (0)