Skip to content

Instantly share code, notes, and snippets.

@mbenke
Created November 12, 2019 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbenke/f97cb761059aadbc7bfd08595e945b3d to your computer and use it in GitHub Desktop.
Save mbenke/f97cb761059aadbc7bfd08595e945b3d to your computer and use it in GitHub Desktop.
Dockerfile for rdkit 2019.09.1
FROM continuumio/miniconda3
RUN conda create -n golem-rdkit-env \
&& conda install --yes --freeze-installed -c rdkit -n golem-rdkit-env rdkit=2019.09.1 \
&& conda clean -afy
RUN echo "source activate golem-rdkit-env" > ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment