Mercurial > repos > fgiacomoni > bih4maconda
comparison Dockerfile @ 1:2744d20c830a draft default tip
" master branch Updating with tag :CI_COMMIT_TAG - - Fxx"
author | fgiacomoni |
---|---|
date | Fri, 27 Nov 2020 11:21:58 +0000 |
parents | de13e2c45971 |
children |
comparison
equal
deleted
inserted
replaced
0:de13e2c45971 | 1:2744d20c830a |
---|---|
1 FROM ubuntu:18.04 | 1 # ref install: ubuntu 20.04 |
2 FROM ubuntu:20.04 | |
3 | |
4 # init var | |
5 ARG DEBIAN_FRONTEND=noninteractive | |
2 | 6 |
3 # set author | 7 # set author |
4 MAINTAINER Franck Giacomoni <franck.giacomoni.fr> | 8 MAINTAINER Franck Giacomoni <franck.giacomoni.fr> |
5 | 9 |
6 ### | 10 ### |
34 echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \ | 38 echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \ |
35 echo "conda activate base" >> ~/.bashrc | 39 echo "conda activate base" >> ~/.bashrc |
36 | 40 |
37 RUN cpan install ExtUtils::MakeMaker && \ | 41 RUN cpan install ExtUtils::MakeMaker && \ |
38 cpan install File::ShareDir::Install && \ | 42 cpan install File::ShareDir::Install && \ |
39 cpan install Module::Release &&\ | 43 cpan install Module::Release && \ |
40 cpan install Archive::Zip &&\ | 44 cpan install Archive::Zip && \ |
41 | |
42 apt -y install git &&\ | 45 apt -y install git &&\ |
43 apt -y install python2.7 python-pip &&\ | 46 apt -y install python3 python3-pip && \ |
44 apt -y install virtualenv &&\ | 47 apt -y install virtualenv && \ |
45 pip install "pip>=7" &&\ | 48 pip install "pip>=7" && \ |
46 pip install -U git+git://github.com/galaxyproject/planemo.git &&\ | 49 pip install -U git+git://github.com/galaxyproject/planemo.git && \ |
47 | |
48 apt-get autoremove -y && \ | 50 apt-get autoremove -y && \ |
49 apt-get clean && \ | 51 apt-get clean && \ |
50 rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | 52 rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
51 | 53 |