Created
January 5, 2019 06:19
-
-
Save kozo2/baeb4f16a8ec7e99141dd3c81ece6306 to your computer and use it in GitHub Desktop.
Dockerfile for cytoscape
This file contains hidden or 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
RUN echo 'deb https://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/' >> /etc/apt/sources.list | |
RUN apt-get install -y apt-transport-https | |
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 | |
RUN apt-get update | |
RUN apt-get install -y r-base psmisc | |
RUN wget https://download2.rstudio.org/rstudio-server-1.1.463-amd64.deb | |
RUN dpkg -i rstudio-server-1.1.463-amd64.deb | |
RUN rstudio-server verify-installation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment