aephidayatuloh commited on
Commit
d8c4cc0
·
verified ·
1 Parent(s): 1d0a0f0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -8
Dockerfile CHANGED
@@ -1,10 +1,6 @@
1
- FROM rocker/rstudio:4.2.3
2
 
3
- LABEL source="https://github.com/davetang/learning_docker/blob/main/rstudio/Dockerfile"
4
-
5
- MAINTAINER Dave Tang <[email protected]>
6
-
7
- ARG bioc_ver=3.16
8
 
9
  RUN apt-get clean all && \
10
  apt-get update && \
@@ -28,7 +24,7 @@ RUN apt-get clean all && \
28
  RUN Rscript -e "install.packages(c('tidymodels', 'tidyverse', 'ggcorrplot', 'readxl', 'skimr'));"
29
 
30
  # the rstudio/ path is set for building with GitHub Actions
31
- # COPY --chown=rstudio:rstudio rstudio/rstudio-prefs.json /home/rstudio/.config/rstudio
32
- # COPY --chown=rstudio:rstudio rstudio/.Rprofile /home/rstudio/
33
 
34
  WORKDIR /home/rstudio
 
1
+ FROM rocker/tidyverse:4.3.3
2
 
3
+ MAINTAINER Aep Hidayatuloh <aephiday25@gmail.com>
 
 
 
 
4
 
5
  RUN apt-get clean all && \
6
  apt-get update && \
 
24
  RUN Rscript -e "install.packages(c('tidymodels', 'tidyverse', 'ggcorrplot', 'readxl', 'skimr'));"
25
 
26
  # the rstudio/ path is set for building with GitHub Actions
27
+ COPY --chown=rstudio:rstudio rstudio-prefs.json /home/rstudio/.config/rstudio
28
+ COPY --chown=rstudio:rstudio .Rprofile /home/rstudio/
29
 
30
  WORKDIR /home/rstudio