-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md and add term-progressbar in the list of dependencies (forgotten long time ago). * Add a dockerfile to make image with all needed dependencies to install AGAT
- Loading branch information
Showing
4 changed files
with
63 additions
and
43 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,32 @@ | ||
# 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 | ||
|
||
# Install last version of AGAT (master branch) | ||
#RUN cd /opt \ | ||
# && git clone https://github.com/NBISweden/AGAT.git \ | ||
# && cd AGAT \ | ||
# && perl Makefile.PL \ | ||
# && make \ | ||
# && make test \ | ||
# && make install \ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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