We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4b2e49 + 6177c09 commit 27528e8Copy full SHA for 27528e8
3 files changed
klusta/Dockerfile
@@ -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
@@ -0,0 +1,3 @@
+#!/bin/bash
+docker build -t spikeinterface/klusta-base:0.2.7 .
klusta/push.sh
+docker push spikeinterface/klusta-base:0.2.7
0 commit comments