Skip to content

Commit 85a1b0e

Browse files
committed
couple of fixes
1 parent 9088b27 commit 85a1b0e

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
5+
# in Windows via a file share from Linux, the scripts will work.
6+
*.{cmd,[cC][mM][dD]} text eol=crlf
7+
*.{bat,[bB][aA][tT]} text eol=crlf
8+
9+
# Force bash scripts to always use LF line endings so that if a repo is accessed
10+
# in Unix via a file share from Windows, the scripts will work.
11+
*.sh text eol=lf

spikeinterface/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ RUN conda env create -f full_spikeinterface_environment_mac.yml
4343
SHELL ["conda","run","-n","si_env","/bin/bash","-c"]
4444
RUN conda install --quiet --yes ipykernel && \
4545
conda install --quiet --yes -c conda-forge datalad && \
46-
python -m ipykernel install --user --name si_env --display-name "spikeinterface" && \
47-
pip install jupytext dotenv
46+
python -m ipykernel install --user --name si_env --display-name "spikeinterface"
47+
RUN pip install jupytext
4848

4949
# Configure git (required by datalad)
5050
WORKDIR /home/$NB_USER/spikeinterface/

spikeinterface/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### How to build this image
22
Open a terminal, navigate to the spikeinterface directory, then run:
3-
`docker build -t wanglabneuro/spikeinterface:0.1 .`
3+
`docker build -t wanglabneuro/spikeinterface:0.2 .`
44
On Linux systems, you can also use the build script (after making it executable `chmod +x build.sh`):
55
`./build.sh`
66

0 commit comments

Comments
 (0)