Skip to content

Commit

Permalink
initial template
Browse files Browse the repository at this point in the history
  • Loading branch information
jtanevski committed May 21, 2021
1 parent 209d4c7 commit a7d09a2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM bioconductor/bioconductor_docker:devel

ENV PASSWORD=saezlab

WORKDIR /home/rstudio/

COPY --chown=rstudio:rstudio setup setup

WORKDIR setup

RUN sudo apt-get -y upgrade
RUN chmod +x *.sh
RUN sudo bash dependencies.sh
RUN Rscript --vanilla install.R

WORKDIR /home/rstudio/
RUN rm -rf setup
1 change: 1 addition & 0 deletions setup/dependencies.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#!/bin/bash
1 change: 1 addition & 0 deletions setup/install.R
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BiocManager::install("mistyR", ask = FALSE)

0 comments on commit a7d09a2

Please sign in to comment.