From f85c52489ad0271656f531c408f36385a481e768 Mon Sep 17 00:00:00 2001 From: Tim Dudgeon Date: Thu, 25 Apr 2019 10:32:17 +0100 Subject: [PATCH] added apt-get update to obable Dockerfile --- Dockerfile-obabel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-obabel b/Dockerfile-obabel index af15295..0a0afe0 100644 --- a/Dockerfile-obabel +++ b/Dockerfile-obabel @@ -9,7 +9,7 @@ USER root # Copy the obabel pipeline implementation into the image COPY src/python /opt/python-obabel -RUN apt-get install -y --no-install-recommends python-setuptools gzip python-pip && pip install -e /opt/python-obabel +RUN apt-get update && apt-get install -y --no-install-recommends python-setuptools gzip python-pip && pip install -e /opt/python-obabel # And the pip packages including pipeline-utilities and im-pipelines-utils-rdkit RUN pip install im-pipelines-utils==2.2.* im-pipelines-utils-rdkit==1.4.*