Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dockerfiles
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
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
Gael MILLOT
dockerfiles
Commits
a99d1750
Commit
a99d1750
authored
3 years ago
by
Gael MILLOT
Browse files
Options
Downloads
Patches
Plain Diff
release v8.7: python dockerfiles added
parent
c2349f58
No related branches found
Branches containing commit
Tags
v8.7
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+6
-0
6 additions, 0 deletions
README.md
python/v3.9.10/extended/v3.1/Dockerfile
+49
-0
49 additions, 0 deletions
python/v3.9.10/extended/v3.1/Dockerfile
with
55 additions
and
0 deletions
README.md
+
6
−
0
View file @
a99d1750
...
...
@@ -71,6 +71,12 @@ Hub-CDB Institut Pasteur & DSI Institut Pasteur
Use the gitlab tag of the docker image (e.g., gitlab_v5.0) to get the description of the modifications below
### v8.7
Dockerfiles added:
<br
/>
python
\v
3.9.10
\e
xtended
\v
3.1 at date 20220504: from gmillot/python_v3.9.10_extended_v2.0:gitlab_v8.4 with cyvcf2 and scipy package added
### v8.6
Dockerfiles added:
<br
/>
...
...
This diff is collapsed.
Click to expand it.
python/v3.9.10/extended/v3.1/Dockerfile
0 → 100644
+
49
−
0
View file @
a99d1750
#########################################################################
## ##
## Dockerfile ##
## Python extended ##
## ##
## Gael A. Millot ##
## Bioinformatics and Biostatistics Hub ##
## Computational Biology Department ##
## Institut Pasteur Paris ##
## ##
#########################################################################
# to see the log of the building:
# sudo docker run -ti --entrypoint bash <IMAGE_NAME>
# cat building.log
# to export the log file of the image building from the container:
# sudo docker images
# sudo docker run -ti --entrypoint bash <IMAGE_NAME>
# exit
# sudo docker container ls -a # to get all the active containers
# sudo docker cp <containerNAMES>:/building.log </host/path/target>
FROM
gmillot/python_v3.9.10_extended_v2.0:gitlab_v8.4
LABEL
Gael.Millot=gael.millot@pasteur.fr
LABEL
gitlab.dockerfiles="https://gitlab.pasteur.fr/gmillot/dockerfiles"
ENV
PY_LIB="\
cyvcf2 \
scipy \
"
# install the packages
RUN
echo
"
\n\n\n\n
================
\n\n
pip install
\n\n
================
\n\n\n\n
"
>
/building.log
\
&& pip install $PY_LIB | tee -a /building.log \
&& echo "\n\n\n\n================\n\nPIP PACKAGES INSTALLED\n\n================\n\n\n\n" >> /building.log \
&& pip list >> /building.log \
# end install the packages
# inactivated packages because are in the base installation
ENV
LC_ALL en_US.UTF-8
ENV
LANG en_US.UTF-8
ENV
LANGUAGE en_US.UTF-8
ENV
LC_NUMERIC en_US.UTF-8
ENTRYPOINT
["/usr/bin/python3"]
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