Skip to content

Commit 27528e8

Browse files
authored
Merge pull request #19 from SpikeInterface/klusta
Added klusta
2 parents f4b2e49 + 6177c09 commit 27528e8

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

klusta/Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.7
2+
3+
RUN apt update && apt install -y build-essential
4+
5+
# downgrade pip version to avoid dependency issues during installations
6+
RUN pip install --no-input pip==21.2.4
7+
8+
RUN pip install numpy
9+
10+
# Install Klusta
11+
RUN pip install Cython h5py tqdm six scipy
12+
RUN pip install click klusta klustakwik2==0.2.7

klusta/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
docker build -t spikeinterface/klusta-base:0.2.7 .

klusta/push.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
docker push spikeinterface/klusta-base:0.2.7

0 commit comments

Comments
 (0)