Skip to content

Commit 47f032d

Browse files
committed
Correct docker file + clearify fingerprint format change
1 parent 025ee8e commit 47f032d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ Formatted as described on http://keepachangelog.com/.
1111

1212
* Fingerprints changed format from intbitset to Roaring bitmap (#52)
1313

14+
Fingerprint data files created with KripoDB < 3 will not work anymore.
15+
They must be exported to makebits with old version of KripoDB and imported in new version.
16+
17+
### Fixed
18+
19+
* When generating similarities of the same fingerprints force ignore upper triangle
20+
1421
## [2.4.0] - 2018-03-28
1522

1623
### Added

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ FROM continuumio/miniconda3
66

77
MAINTAINER Stefan Verhoeven <s.verhoeven@esciencecenter.nl>
88

9-
RUN /opt/conda/bin/conda install -y -q -c conda-forge -c rdkit rdkit pytables coverage pandas numpy scipy && \
10-
/opt/conda/bin/conda clean -y -s -p -t -l -i && apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
9+
RUN /opt/conda/bin/conda install -y -q -c conda-forge -c rdkit rdkit pytables coverage pandas numpy scipy gxx_linux-64 && \
10+
conda update conda -y -q
1111

1212
ENV PATH /opt/conda/bin:$PATH
1313

@@ -18,4 +18,3 @@ WORKDIR /app
1818
RUN /opt/conda/bin/python setup.py install
1919

2020
CMD ["kripodb", "--help"]
21-

0 commit comments

Comments
 (0)