diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-07-28 14:49:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 14:49:54 -0400 |
commit | 30eab9663d5541e80f3c07985e0349c754b043ed (patch) | |
tree | c57dd2f91e6fbc66d0e34c1e5377ad142ba87824 /Dockerfile | |
parent | a8d2fd9a872facc4a6ea5bd803396392b1be417d (diff) | |
download | docker-buildsys-pipeline-master.tar.gz |
Allow snapshot URL or direct file specification
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,7 +15,7 @@ ARG CONDA_BUILD_VERSION ARG CONDA_PACKAGES # Pipeline environment snapshot definition -ARG SNAPSHOT_URL +ARG SNAPSHOT_INPUT # Declare environment ENV OPT=/opt \ @@ -74,6 +74,8 @@ RUN curl -q -OSs ${MC_URL}/${MC_INSTALLER} \ ENV PATH "${MC_PATH}/bin:${PATH}" USER developer +ADD ${SNAPSHOT_INPUT} ${HOME}/SNAPSHOT.yml + RUN conda config --set auto_update_conda false \ && conda config --set always_yes true \ && conda config --set quiet true \ @@ -82,7 +84,6 @@ RUN conda config --set auto_update_conda false \ conda=${CONDA_VERSION} \ git \ ${CONDA_PACKAGES} \ - && curl -L -Ss ${SNAPSHOT_URL} -o ${HOME}/SNAPSHOT.yml \ && conda env update -n base --file ${HOME}/SNAPSHOT.yml WORKDIR ${HOME} |