Skip to content
Snippets Groups Projects
Commit 899b16d8 authored by Augustin Zidek's avatar Augustin Zidek
Browse files

Update pip in the virtual environment

PiperOrigin-RevId: 697911731
parent b108eedc
No related branches found
No related tags found
1 merge request!1Cloned AlphaFold 3 repo into this one
...@@ -23,6 +23,10 @@ RUN add-apt-repository ppa:deadsnakes/ppa \ ...@@ -23,6 +23,10 @@ RUN add-apt-repository ppa:deadsnakes/ppa \
&& DEBIAN_FRONTEND=noninteractive apt install --yes --quiet python3.11 python3-pip python3.11-venv python3.11-dev && DEBIAN_FRONTEND=noninteractive apt install --yes --quiet python3.11 python3-pip python3.11-venv python3.11-dev
RUN python3.11 -m venv /alphafold3_venv RUN python3.11 -m venv /alphafold3_venv
ENV PATH="/hmmer/bin:/alphafold3_venv/bin:$PATH" ENV PATH="/hmmer/bin:/alphafold3_venv/bin:$PATH"
# Update pip to the latest version. Not necessary in Docker, but good to do when
# this is used as a recipe for local installation since we rely on new pip
# features for secure installs.
RUN pip3 install --upgrade pip
# Install HMMER. Do so before copying the source code, so that docker can cache # Install HMMER. Do so before copying the source code, so that docker can cache
# the image layer containing HMMER. # the image layer containing HMMER.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment