From 3a85383fce9d59d23f9bc473eeccaee7d38aad46 Mon Sep 17 00:00:00 2001 From: Ziad Al Bkhetan Date: Wed, 4 Dec 2024 14:52:17 +1100 Subject: [PATCH] docker file for boltz --- dockerfiles/Dockerfile_nfcore-proteinfold_boltz | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 dockerfiles/Dockerfile_nfcore-proteinfold_boltz diff --git a/dockerfiles/Dockerfile_nfcore-proteinfold_boltz b/dockerfiles/Dockerfile_nfcore-proteinfold_boltz new file mode 100644 index 00000000..3b7b6c08 --- /dev/null +++ b/dockerfiles/Dockerfile_nfcore-proteinfold_boltz @@ -0,0 +1,17 @@ +FROM python:3.9-slim + +LABEL authors="Ziad Al-Bkhetan " \ + title="nfcore/proteinfold_boltz" \ + Version="0.3.0" \ + description="Docker image containing all software requirements to run boltz using the nf-core/proteinfold pipeline" + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + build-essential \ + && rm -rf /var/lib/apt/lists/* + +RUN pip install boltz + +CMD ["boltz"] + +