Skip to content

Commit 29f0f5d

Browse files
committed
missing files from previous commit
1 parent 056ceb5 commit 29f0f5d

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

Dockerfile-obabel

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+

Dockerfile-rdkit-centos

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.*

0 commit comments

Comments
 (0)