Skip to content

Commit 547bf2a

Browse files
committed
update: add openff-toolkit and openbabel to Conda dependencies in Dockerfile
1 parent 823be78 commit 547bf2a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update \
3636
&& apt-get clean
3737

3838
# Install Conda dependencies
39-
RUN conda install -y -c conda-forge python=3.10 gcc=11.4.0 gxx=11.4.0 libstdcxx=14.1.0 libstdcxx-ng=14.1.0 libgcc=14.1.0 libgcc-ng=14.1.0 compilers=1.5.2 && \
39+
RUN conda install -y -c conda-forge python=3.10 gcc=11.4.0 gxx=11.4.0 libstdcxx=14.1.0 libstdcxx-ng=14.1.0 libgcc=14.1.0 libgcc-ng=14.1.0 compilers=1.5.2 openff-toolkit=0.16.0 openbabel=3.1.1 && \
4040
conda clean -afy
4141

4242
# Set work directory
@@ -46,9 +46,8 @@ WORKDIR /app/posebench
4646
ARG GIT_TAG=main
4747
RUN git clone https://github.com/BioinfoMachineLearning/posebench . --branch ${GIT_TAG} \
4848
&& conda env update -f environments/posebench_environment.yaml \
49-
&& conda install -y -c conda-forge openff-toolkit=0.16.0 \
5049
&& pip install -e . \
5150
&& pip install numpy==1.26.4 --no-dependencies \
5251
&& pip install prody==2.4.1 --no-dependencies \
53-
&& conda clean -afy \
54-
&& rm -rf /root/.cache/pip
52+
&& pip install git+https://github.com/amorehead/posecheck.git@posebench \
53+
&& conda clean -afy

0 commit comments

Comments
 (0)