Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Alphafold3
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RC Data Science
community-containers
Alphafold3
Commits
d2bd79d9
Commit
d2bd79d9
authored
6 months ago
by
Fortune Iriaye
Browse files
Options
Downloads
Patches
Plain Diff
Update Dockerfile
parent
7d5c07d2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#12204
failed with stage
in 1 minute and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/Dockerfile
+6
-5
6 additions, 5 deletions
docker/Dockerfile
with
6 additions
and
5 deletions
docker/Dockerfile
+
6
−
5
View file @
d2bd79d9
...
...
@@ -11,12 +11,14 @@
FROM
nvidia/cuda:12.6.0-base-ubuntu22.04
# Some RUN statements are combined together to make Docker build run faster.
# Get latest package listing, install software-properties-common, git and wget.
# Get latest package listing, install software-properties-common, git, wget,
# compilers and libraries.
# git is required for pyproject.toml toolchain's use of CMakeLists.txt.
# gcc, g++, make are required for compiling hmmer and AlphaFold 3 libaries.
# zlib is a required dependency of AlphaFold 3.
RUN
apt update
--quiet
\
&&
apt
install
--yes
--quiet
software-properties-common
\
&&
apt
install
--yes
--quiet
git wget
\
&&
apt
install
--yes
--quiet
g++ make build-essential cmake
&&
apt
install
--yes
--quiet
git wget gcc g++ make zlib1g-dev zstd
# Get apt repository of specific Python versions. Then install Python. Tell APT
# this isn't an interactive TTY to avoid timezone prompt when installing.
...
...
@@ -46,7 +48,6 @@ 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).
...
...
@@ -60,4 +61,4 @@ ENV XLA_FLAGS="--xla_gpu_enable_triton_gemm=false"
ENV
XLA_PYTHON_CLIENT_PREALLOCATE=true
ENV
XLA_CLIENT_MEM_FRACTION=0.95
CMD
["python3", "run_alphafold.py"]
CMD
["python3", "run_alphafold.py"]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment