-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
32 lines (20 loc) · 967 Bytes
/
Dockerfile
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
########### Dockerfile, for use with scilifelab serve
FROM continuumio/miniconda3:latest
RUN apt-get update && \
apt-get upgrade -y && \
# apt-get install -y git libxml2-dev libmagick++-dev libglpk40 libgfortran5 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
#RUN conda install bioconda::prokka
#RUN conda install prokka
RUN conda install -y bioconda/label/cf201901::prokka
# Command to install standard R packages from CRAN; enter the list of required packages for your app here
#RUN Rscript -e 'install.packages(c("shiny","tidyverse","BiocManager","plotly","Cairo","shinyjs","glmnet","egg","ggplot2"))'
# Command to install packages from Bioconductor; enter the list of required Bioconductor packages for your app here
#RUN Rscript -e 'BiocManager::install(c("Biostrings"),ask = F)'
#RUN rm -rf /srv/shiny-server/*
#COPY /app/ /srv/shiny-server/
#COPY / /srv/shiny-server/
#USER shiny
#EXPOSE 3838
### CMD ["/usr/bin/shiny-server"]