File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # We should create an Open Babel implementation of pipeline_utils that handles the basic I/O for
2
+ # structure files so that the dependency on RDKit can be removed.
3
+ # See https://github.com/InformaticsMatters/pipelines-obabel/issues/1
4
+
5
+ FROM informaticsmatters/obabel:latest
6
+ LABEL maintainer="Tim Dudgeon<
[email protected] >"
7
+
8
+ USER root
9
+
10
+ # Copy the obabel pipeline implementation into the image
11
+ COPY src/python /opt/python-obabel
12
+ RUN apt-get install -y --no-install-recommends python-setuptools gzip python-pip && pip install -e /opt/python-obabel
13
+ # And the pip packages including pipeline-utilities and im-pipelines-utils-rdkit
14
+ RUN pip install im-pipelines-utils==2.2.* im-pipelines-utils-rdkit==1.4.*
15
+
16
+ USER obabel
17
+
Original file line number Diff line number Diff line change
1
+ FROM informaticsmatters/rdkit-python-centos:latest
2
+ LABEL maintainer="Tim Dudgeon<
[email protected] >"
3
+
4
+ USER root
5
+
6
+ # install required packages
7
+ RUN yum -y update && yum -y install zip unzip python-devel python2-pip python-setuptools python2-matplotlib
8
+
9
+ # Copy the pipeline implementation into the image
10
+ COPY src/python /opt/python
11
+ RUN pip install -e /opt/python
12
+ # And the pip packages including pipeline-utilities and im-pipelines-utils-rdkit
13
+ # NOTE: matplotlib is missing
14
+ RUN pip install molvs standardiser im-pipelines-utils==2.2.* im-pipelines-utils-rdkit==1.4.*
You can’t perform that action at this time.
0 commit comments