From eac27abfee0f984992a80d1aff67be0a70cb5af3 Mon Sep 17 00:00:00 2001 From: Ubuntu <ubuntu@fortunevm.openstack.internal> Date: Wed, 20 Nov 2024 20:29:43 +0000 Subject: [PATCH] Edited only Dockerfile --- docker/.Dockerfile.swp | Bin 0 -> 1024 bytes docker/Dockerfile | 4 +++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 docker/.Dockerfile.swp diff --git a/docker/.Dockerfile.swp b/docker/.Dockerfile.swp new file mode 100644 index 0000000000000000000000000000000000000000..5373f732d195de1201b6ef82c4a4822a0e588437 GIT binary patch literal 1024 zcmYc?$V<%2S1{8vVn6|(oEaEOlS=bSN>PNda?<jPN=oxm%W|>GA_P<Nle1Hc^j*MI XT4qivLTZ#X8UmvsK>H8~MYjR~zPb^o literal 0 HcmV?d00001 diff --git a/docker/Dockerfile b/docker/Dockerfile index daaf8ec..ec52f98 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,8 @@ FROM nvidia/cuda:12.6.0-base-ubuntu22.04 # git is required for pyproject.toml toolchain's use of CMakeLists.txt. RUN apt update --quiet \ && apt install --yes --quiet software-properties-common \ - && apt install --yes --quiet git wget + && apt install --yes --quiet git wget \ + && apt install --yes --quiet g++ make build-essential cmake # Get apt repository of specific Python versions. Then install Python. Tell APT # this isn't an interactive TTY to avoid timezone prompt when installing. @@ -45,6 +46,7 @@ COPY . /app/alphafold WORKDIR /app/alphafold # Install the Python dependencies AlphaFold 3 needs. +RUN pip3 install setuptools wheel build RUN pip3 install -r dev-requirements.txt RUN pip3 install --no-deps . # Build chemical components database (this binary was installed by pip). -- GitLab