From 491977ecce706f4516dc1d3def87040700a32420 Mon Sep 17 00:00:00 2001 From: Jeremy Fee <jmfee@usgs.gov> Date: Wed, 27 Jun 2018 11:37:33 -0600 Subject: [PATCH] Update dockerfile to use specific version of icu obspy dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ab993d1e0..2a09b4a0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN echo 'export PATH=/conda/bin:$PATH' > /etc/profile.d/conda.sh && \ # install algorithms and dependencies via conda RUN conda config --set ssl_verify $SSL_CERT_FILE && \ conda config --add channels conda-forge && \ - conda install --yes jupyter obspy && \ + conda install --yes jupyter obspy 'icu=58.*' && \ conda clean -i -l -t -y && \ # build pycurl with SFTP support export PIP_CERT=$SSL_CERT_FILE && \ -- GitLab