Skip to content

Commit 2fb2dee

Browse files
committed
Update conda environment so Docker image builds
1 parent b1d6b0d commit 2fb2dee

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && \
1010
# Python is only needed for testing SINGE and could be removed from the base
1111
# to reduce the image size
1212
ENV PATH /opt/conda/bin:$PATH
13-
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh -O ~/miniconda.sh && \
13+
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh --no-check-certificate -O ~/miniconda.sh && \
1414
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
1515
rm ~/miniconda.sh && \
1616
/opt/conda/bin/conda clean --all && \

tests/environment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: singe-test
22
dependencies:
3+
- h5py=2.10.0
34
- numpy=1.16.3
4-
- pip=19.1
5+
- pip=19.1.1
6+
- python=3.7.11
57
- scipy=1.2.1
68
- pip:
79
- csvdiff==0.3.3

0 commit comments

Comments
 (0)