diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-06-06 15:10:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-06 15:10:40 -0400 |
commit | 30fd6805f2fffd4924114f1ec781877cf3e41303 (patch) | |
tree | 2fe33b02bedc023809f10b6d0a4ca074c40f0a94 /Dockerfile | |
parent | f6315e2bb78da4a73edb2b612dd356243d473d30 (diff) | |
parent | 2d80604fd58f12598bf5228fb629e560ff506164 (diff) | |
download | docker-buildsys-30fd6805f2fffd4924114f1ec781877cf3e41303.tar.gz |
Merge pull request #11 from jhunkeler/conda-defaults
Toggle conda config options to combat annoying default behavior
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -75,6 +75,9 @@ RUN curl -q -O ${MC_URL}/${MC_INSTALLER} \ ENV PATH "${MC_PATH}/bin:${PATH}" USER jenkins RUN conda config --set auto_update_conda false \ + && conda config --set always_yes true \ + && conda config --set quiet true \ + && conda config --set rollback_enabled false \ && conda install --yes --quiet \ conda=${CONDA_VERSION} \ conda-build=${CONDA_BUILD_VERSION} \ |