Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
loosolab
/
wilson-apps
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
3
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
4689e0c
docker
1.0
1.1
1.2
1.3
1.4
1.5.1
1.5.2
1.5.3
1.5.4
Dockerfile
1.5
demo
images
wilson-basic
README.md
Breadcrumbs
wilson-apps
/
docker
/
1.5.4
/
Dockerfile
Blame
Blame
Latest commit
History
History
82 lines (64 loc) · 3.03 KB
Breadcrumbs
wilson-apps
/
docker
/
1.5.4
/
Dockerfile
Top
File metadata and controls
Code
Blame
82 lines (64 loc) · 3.03 KB
Raw
# Pulls debian:latest from dockerhub FROM debian # Dockerfile questions go to MAINTAINER C. Kuenne / MPI-BN / Bioinformatics / carsten.kuenne@mpi-bn.mpg.de #Some basic packages, updates and cleanup RUN apt-get -y update && apt-get -y upgrade && \ apt-get -y install \ r-base \ wget \ libnlopt-dev \ libssl-dev \ libxml2-dev \ libcurl4-openssl-dev \ git \ procps \ gdebi-core && \ apt-get clean #Installs DEVTOOLS RUN Rscript -e "install.packages(c('devtools'), repos='https://cran.rstudio.com/')" #Installs BIOCONDUCTOR/BiocInstaller RUN Rscript -e 'source("https://bioconductor.org/biocLite.R")' #Install Shiny-Server #RUN wget https://download3.rstudio.org/ubuntu-12.04/x86_64/shiny-server-1.5.6.875-amd64.deb && \ #gdebi -n shiny-server-1.5.6.875-amd64.deb && \ #RUN wget https://download3.rstudio.org/ubuntu-14.04/x86_64/shiny-server-1.5.7.907-amd64.deb && \ #gdebi -n shiny-server-1.5.7.907-amd64.deb && \ RUN wget https://download3.rstudio.org/ubuntu-14.04/x86_64/shiny-server-1.5.9.923-amd64.deb && \ gdebi -n shiny-server-1.5.9.923-amd64.deb && \ rm /srv/shiny-server/index.html && \ rm -rf /srv/shiny-server/sample-apps #install shinythemes RUN Rscript -e 'install.packages("shinythemes", repos="http://cran.wustl.edu/")' #install shinyBS RUN Rscript -e 'install.packages("shinyBS", repos="http://cran.wustl.edu/")' #install old mvtnorm package (1.0-8), because the current 1.0-10 needs r 3.5 (current debian r is 3.3) RUN Rscript -e 'devtools::install_version(repos="http://cran.wustl.edu/", package = "mvtnorm", version = "1.0-8")' #Install WILSON RUN Rscript -e 'devtools::install_github(repo = "loosolab/wilson", host="github.molgen.mpg.de/api/v3", auth_token = NULL, upgrade = "never")' #Install stackdump #RUN Rscript -e 'devtools::install_github(repo = "jcheng5/stackdump")' #Install WILSON App #RUN git clone -b stackdump https://github.molgen.mpg.de/loosolab/wilson-apps /srv/shiny-server/tmp && \ RUN git clone https://github.molgen.mpg.de/loosolab/wilson-apps /srv/shiny-server/tmp && \ cp -a /srv/shiny-server/tmp/wilson-basic/. /srv/shiny-server/ && \ rm -rf /srv/shiny-server/tmp #Install webshot/phantomjs to permit download of interactive plots with plot.ly RUN Rscript -e 'install.packages("webshot", repos="http://cran.wustl.edu")' RUN Rscript -e 'webshot::install_phantomjs()' RUN cp /root/bin/phantomjs /usr/local/bin EXPOSE 3838 RUN rm -rf /srv/shiny-server/data && \ mkdir /srv/shiny-server/data #check current directory for the presence of clarion input files (*.se, *.clarion) -> include in container #add pointless additional copy of entrypoint.sh because otherwise the building will fail if no clarion files exist (yuck!) ADD entrypoint.sh *.se *.clarion /srv/shiny-server/data/ RUN rm /srv/shiny-server/data/entrypoint.sh ADD entrypoint.sh /usr/bin/entrypoint.sh RUN chmod +x /usr/bin/entrypoint.sh #switch shiny user uid to 1000 (previously docker user); set permissions RUN usermod -u 1000 shiny && \ chown -R shiny:shiny /srv/shiny-server/ && \ mkdir -p /srv/shiny-server/logs && \ chmod ugo+wrX /srv/shiny-server/logs CMD ["/usr/bin/entrypoint.sh"]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
You can’t perform that action at this time.