-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from SpikeInterface/update-ms5
Upgrade MS5 image to v0.5.3
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM python:3.8 | ||
FROM python:3.10 | ||
|
||
# downgrade pip version to avoid dependency issues during installations | ||
RUN pip install --no-input pip==21.2.4 | ||
RUN pip install --upgrade pip | ||
|
||
RUN pip install numpy | ||
|
||
RUN pip install mountainsort5==0.3.0 | ||
RUN pip install mountainsort5==0.5.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker build -t spikeinterface/mountainsort5-base:latest -t spikeinterface/mountainsort5-base:0.3.0 . | ||
docker build -t spikeinterface/mountainsort5-base:latest -t spikeinterface/mountainsort5-base:0.5.3 . |