Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +4 -8
Dockerfile
CHANGED
@@ -1,10 +1,6 @@
|
|
1 |
-
FROM rocker/
|
2 |
|
3 |
-
|
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 |
-
|
32 |
-
|
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
|