Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
fix conda to py 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bolliger32 committed Sep 10, 2020
1 parent f751bbb commit f10fa43
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions worker/Dockerfile_scheduler
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,14 @@ ENV CONDA_DIR=/opt/conda \
LANGUAGE=en_US.UTF-8
ENV PATH=$CONDA_DIR/bin:$PATH

ENV MINICONDA_VERSION=4.8.3 \
MINICONDA_MD5=d63adf39f2c220950a063e0529d4ff74 \
CONDA_VERSION=4.8.3
ENV MINICONDA_VERSION=4.8.12.1 \
MINICONDA_MD5=81c773ff87af5cfac79ab862942ab6b3

WORKDIR /tmp
RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh && \
echo "${MINICONDA_MD5} *Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
/bin/bash Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
rm Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh && \
RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
echo "${MINICONDA_MD5} *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
/bin/bash Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
rm Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
conda config --system --prepend channels conda-forge && \
conda config --system --set channel_priority strict && \
conda update -n base --yes conda && \
Expand Down

0 comments on commit f10fa43

Please sign in to comment.