Skip to content

Commit b4f5fc8

Browse files
committed
updates default repo
1 parent f5cdabc commit b4f5fc8

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

pykilosort/dockerfiles/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ ENV LATEST_CONDA_SCRIPT "Miniconda3-py38_$MINICONDA_VERSION-Linux-x86_64.sh"
2020
RUN wget --quiet https://repo.anaconda.com/miniconda/$LATEST_CONDA_SCRIPT -O ~/miniconda.sh && \
2121
bash ~/miniconda.sh -b -p $CONDA_DIR && \
2222
rm ~/miniconda.sh
23-
# RUN echo 'export PATH="/home/miniconda3/bin:$PATH"' >> ~/.bashrc
2423
ENV PATH=$CONDA_DIR/bin:$PATH
2524
RUN conda update conda && \
2625
conda install conda-build
@@ -33,6 +32,9 @@ RUN conda init bash
3332
# Install python port of pykilosort
3433
RUN git clone -b drift_test_stable https://github.com/kushbanga/pykilosort.git /src/pykilosort
3534
WORKDIR /src/pykilosort
35+
# Switch to MouseLand/develop branch - may revert to kushbanga/drift_test_stable in the future
36+
RUN git remote add MouseLand https://github.com/MouseLand/pykilosort.git && \
37+
git fetch MouseLand && git checkout MouseLand/develop && git checkout -b develop
3638

3739
# Create environment
3840
RUN conda env create -f pyks2.yml
@@ -42,3 +44,5 @@ SHELL ["conda","run","-n","pyks2","/bin/bash","-c"]
4244
RUN conda install --quiet --yes ipykernel && \
4345
python -m ipykernel install --user --name pyks2 --display-name "pyKilosort" && \
4446
conda develop .
47+
48+
WORKDIR /

pykilosort/dockerfiles/Dockerfile.testing

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ RUN conda init bash
3737
# Install python port of pykilosort
3838
RUN git clone -b drift_test_stable https://github.com/kushbanga/pykilosort.git /src/pykilosort
3939
WORKDIR /src/pykilosort
40+
# Switch to MouseLand/develop branch - may revert to kushbanga/drift_test_stable in the future
4041
RUN git remote add MouseLand https://github.com/MouseLand/pykilosort.git && \
4142
git fetch MouseLand && git checkout MouseLand/develop && git checkout -b develop
4243

@@ -51,3 +52,5 @@ RUN conda install --quiet --yes ipykernel && \
5152
conda develop .
5253

5354
RUN rm -rf /srv/packages
55+
56+
WORKDIR /

0 commit comments

Comments
 (0)