Dears,
I am building a docker file and need to insert package dependencies and system dependencies:
1- How do I install the Bioconductor package with its dependencies? Are they installed automatically if I mention the version of the package?
2- If I have packages with GitHub source, I need to search for their repositories automatically in R, is it possible to use the "remotes" package?
3- If I have the following tables for Debian dependencies, which exact column should be used as dependency?
I mean should I make for example in the second package "actuar"
RUN apt-get install -y \
liblapack.so.3.7.1
OR
RUN apt-get install -y \
liblapack3
OR
RUN apt-get install -y \
liblapack-dev
Thanks and Regards,