From eb81c5a0afaf5c393ed3f04358fe552c9cb27e65 Mon Sep 17 00:00:00 2001 From: Steven Soloway Date: Mon, 1 Jan 2018 07:32:05 -0500 Subject: [PATCH] Add dependency (#8928) Based on #311556456 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8ef81559d80..85feab5fbd7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,7 +8,7 @@ ENV PATH $CONDA_DIR/bin:$PATH RUN mkdir -p $CONDA_DIR && \ echo export PATH=$CONDA_DIR/bin:'$PATH' > /etc/profile.d/conda.sh && \ apt-get update && \ - apt-get install -y wget git libhdf5-dev g++ graphviz openmpi-bin && \ + apt-get install -y wget git libhdf5-dev g++ graphviz openmpi-bin libgl1-mesa-glx && \ wget --quiet https://repo.continuum.io/miniconda/Miniconda3-4.2.12-Linux-x86_64.sh && \ echo "c59b3dd3cad550ac7596e0d599b91e75d88826db132e4146030ef471bb434e9a *Miniconda3-4.2.12-Linux-x86_64.sh" | sha256sum -c - && \ /bin/bash /Miniconda3-4.2.12-Linux-x86_64.sh -f -b -p $CONDA_DIR && \