-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74459b7
commit e458c66
Showing
3 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# DOCKER FILE FOR WORKSHOP-NGSINTRO | ||
# 2024 Roy Francis | ||
|
||
FROM rocker/verse:4.2.3 | ||
LABEL Description="Docker image for NBIS workshop" | ||
LABEL Maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source="https://github.com/NBISweden/workshop-ngsintro" | ||
ARG QUARTO_VERSION="1.4.549" | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get install --no-install-recommends -y \ | ||
libxml2-dev \ | ||
libssl-dev \ | ||
libcurl4-openssl-dev \ | ||
libudunits2-dev \ | ||
libopenblas-base \ | ||
libgdal-dev \ | ||
curl \ | ||
&& wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ | ||
&& apt-get install -y ./google-chrome-stable_current_amd64.deb \ | ||
&& rm -rf ./google-chrome-stable_current_amd64.deb \ | ||
&& curl -o quarto-linux-amd64.deb -L https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.deb \ | ||
&& apt-get install -y ./quarto-linux-amd64.deb \ | ||
&& rm -rf ./quarto-linux-amd64.deb \ | ||
&& Rscript -e 'install.packages(c("remotes","fontawesome","here","htmlTable","leaflet","readxl","writexl"),repos = "http://cran.us.r-project.org");' \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& mkdir /qmd /.cache \ | ||
&& chmod 777 /qmd /.cache | ||
|
||
## Required when editing rnaseq | ||
## RUN Rscript -e 'BiocManager::install(c("DESeq2","edgeR","goseq","GO.db","org.Mm.eg.db","reactome.db"));' | ||
WORKDIR /qmd | ||
#ENV XDG_CACHE_HOME=/tmp/quarto_cache_home | ||
#ENV XDG_DATA_HOME=/tmp/quarto_data_home | ||
CMD quarto render | ||
|
This file contains 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