Skip to content

Commit

Permalink
Merge pull request #7 from LUMC/develop
Browse files Browse the repository at this point in the history
update with docker
  • Loading branch information
tomkuipers1402 authored May 1, 2020
2 parents 4f2aa95 + 79f0eec commit a13dd2c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM rocker/r-ver:3.6.1

# Install Ubuntu packages
RUN apt-get update && apt-get install -y \
sudo \
gdebi-core \
pandoc \
pandoc-citeproc \
libcairo2-dev \
libjpeg-dev \
libxt-dev \
libssl-dev \
libcurl4-gnutls-dev \
libxml2-dev \
libssl-dev

#install necessary libraries
RUN R -e "install.packages('devtools')"
RUN R -e "devtools::install_github('LUMC/dgeAnalysis')"

EXPOSE 1402

CMD R -e "library(dgeAnalysis); dgeAnalysis::startApp()"

0 comments on commit a13dd2c

Please sign in to comment.