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
f06d25f
docker
1.0
Dockerfile
1.1
1.2
1.3
1.4
1.5.1
1.5.2
1.5.3
1.5.4
1.5
demo
images
wilson-basic
README.md
Breadcrumbs
wilson-apps
/
docker
/
1.0
/
Dockerfile
Blame
Blame
Latest commit
History
History
46 lines (37 loc) · 1.3 KB
Breadcrumbs
wilson-apps
/
docker
/
1.0
/
Dockerfile
Top
File metadata and controls
Code
Blame
46 lines (37 loc) · 1.3 KB
Raw
# Pulls debian:latest from dockerhub FROM debian # Dockerfile questions go to MAINTAINER P. Hofmann / MPI-BN / IT Service Group / peter.hofmann@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 \ gdebi-core && \ apt-get clean && \ #Installs DEVTOOLS Rscript -e "install.packages(c('devtools'), \ repos='https://cran.rstudio.com/')" && \ #Installs BIOCONDUCTOR/BiocInstaller Rscript -e 'source("https://bioconductor.org/biocLite.R")' && \ #Install Shiny-Server wget https://download3.rstudio.org/ubuntu-12.04/x86_64/shiny-server-1.5.5.872-amd64.deb && \ gdebi -n shiny-server-1.5.5.872-amd64.deb && \ rm /srv/shiny-server/index.html && \ rm -rf /srv/shiny-server/sample-apps && \ #Install WILSON Rscript -e 'devtools::install_github(repo = "loosolab/wilson", host="github.molgen.mpg.de/api/v3")' && \ #Install WILSON App 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 && \ rm -rf /srv/shiny-server/data && \ mkdir /srv/shiny-server/data && \ chown -R shiny:shiny /srv/shiny-server/ EXPOSE 3838 CMD ["shiny-server"]
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
You can’t perform that action at this time.