-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add term-progressbar in the list of dependencies (forgot long time ag…
…o). Add a dockerfile to make image with all needed dependencies to install AGAT
- Loading branch information
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Image with all dependencies for AGAT | ||
FROM ubuntu:latest | ||
|
||
# Needed to avoid to be stuck when installing r-base | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get -y install libdb-dev | ||
|
||
RUN apt-get -y install r-base | ||
|
||
# Perl dependencies | ||
RUN apt-get -y install libbio-perl-perl libclone-perl libgraph-perl liblwp-useragent-determined-perl libstatistics-r-perl libcarp-clan-perl libsort-naturally-perl libfile-share-perl libfile-sharedir-install-perl libyaml-perl liblwp-protocol-https-perl libfile-sharedir-perl libmoose-perl libterm-progressbar-perl libdevel-cover-perl | ||
|
||
# add cpan in case we need to install extra module for test | ||
#RUN apt-get -y install cpanminus | ||
|
||
# add git in case we need to make some debug | ||
#RUN apt-get -y install git | ||
|
||
# add a text editor in case we need to we need to make some debug | ||
#RUN apt-get -y install nano | ||
|