Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
magatt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UMR GDEC
magatt
Commits
70c7a358
Commit
70c7a358
authored
1 year ago
by
Helene Rimbert
Browse files
Options
Downloads
Patches
Plain Diff
Add new Dockerfile
parent
a32ec486
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+36
-0
36 additions, 0 deletions
Dockerfile
with
36 additions
and
0 deletions
Dockerfile
0 → 100644
+
36
−
0
View file @
70c7a358
FROM
ubuntu
# Change shell, allow source
SHELL
["/bin/bash", "-c"]
# Update apt packages
RUN
apt update
&&
\
apt upgrade
-y
&&
\
# Install graphviz
apt install graphviz -y && \
# Install Python3.10
apt install python3 -y && \
# Install Pip
apt install python3-pip -y && \
python3 -m pip install --upgrade pip && \
# Create and Set venv
apt install python3.10-venv -y && \
python3 -m venv /opt/venv/cicd && \
source /opt/venv/cicd/bin/activate && \
# Install specific modules (code, test, doc)
pip install pylint && \
pip install pylint-gitlab && \
pip install anybadge && \
pip install coverage && \
pip install pillow && \
pip install numpy && \
pip install matplotlib==3.5.3 && \
pip install pandas && \
pip install upsetplot && \
pip install scikit-bio && \
pip install pysam && \
pip install -U sphinx && \
pip install -U sphinx-rtd-theme && \
# Clean image
apt clean -y && \
pip cache purge && \
rm -rf /var/log/*
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