Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion archived/yass/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ RUN echo ". $CONDA_DIR/etc/profile.d/conda.sh" >> /root/.profile
RUN conda init bash

# install YASS
RUN conda install pytorch==1.2
RUN conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r && \
conda install pytorch==1.2
RUN git clone https://github.com/paninski-lab/yass \
&& cd yass \
&& pip --no-cache-dir install -e . \
Expand Down
6 changes: 4 additions & 2 deletions kilosort4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM nvidia/cuda:12.0.0-base-ubuntu20.04

LABEL maintainer="Alessio Buccino <alessiop.buccino@gmail.com>"

ENV KILOSORT4_VERSION=4.0.38
ENV KILOSORT4_VERSION=4.1.7


# USER root
Expand All @@ -25,7 +25,9 @@ RUN wget --quiet https://repo.anaconda.com/miniconda/$LATEST_CONDA_SCRIPT -O ~/m
bash ~/miniconda.sh -b -p $CONDA_DIR && \
rm ~/miniconda.sh
ENV PATH=$CONDA_DIR/bin:$PATH
RUN conda update conda && \
RUN conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r && \
conda update conda && \
conda install conda-build

# make conda activate command available from /bin/bash --login shells
Expand Down
4 changes: 3 additions & 1 deletion pykilosort/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ RUN wget --quiet https://repo.anaconda.com/miniconda/$LATEST_CONDA_SCRIPT -O ~/m
bash ~/miniconda.sh -b -p $CONDA_DIR && \
rm ~/miniconda.sh
ENV PATH=$CONDA_DIR/bin:$PATH
RUN conda update conda && \
RUN conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r && \
conda update conda && \
conda install conda-build

# make conda activate command available from /bin/bash --login shells
Expand Down
4 changes: 3 additions & 1 deletion spikeinterface-jupyterlab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ fix-permissions /srv/spikeinterface
USER $NB_UID

# update Anaconda and install pip
RUN conda update -y conda && \
RUN conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r && \
conda update -y conda && \
conda install -y pip

# Conda installs
Expand Down
Loading