Skip to content

Commit 5745bb6

Browse files
committed
Update conda environment, remove kymatio
1 parent cc3afba commit 5745bb6

4 files changed

Lines changed: 232 additions & 183 deletions

File tree

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN apt-get update && \
3434

3535
# Install conda in /opt/miniconda
3636
ENV PATH /opt/miniconda/bin:$PATH
37-
RUN wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh && \
37+
RUN wget https://repo.anaconda.com/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh && \
3838
/bin/bash miniconda.sh -b -p /opt/miniconda && \
3939
rm miniconda.sh && \
4040
hash -r && \
@@ -43,9 +43,11 @@ RUN wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -
4343
echo "conda activate" >> ~/.bashrc && \
4444
conda config --set always_yes yes --set changeps1 yes
4545

46-
COPY environment-pinned.yml /srv/lib/
46+
#COPY environment-pinned.yml /srv/lib/
47+
COPY environment-explicit.yml /srv/lib/
4748
RUN conda config --append channels conda-forge --append channels thomasfillon --append channels soumith &&\
48-
conda env update --file environment-pinned.yml &&\
49+
#conda env update --file environment-pinned.yml &&\
50+
conda install -n base --file environment-explicit.yml &&\
4951
conda clean --all --yes
5052

5153
# Link glib-networking with Conda to fix missing TLS/SSL support in Conda Glib library

conda-environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ dependencies:
5151
- ghp-import
5252
- jsonfield
5353
- jupyterthemes
54-
- kymatio
5554
- markdown
5655
- mutagen
5756
- numpydoc

0 commit comments

Comments
 (0)