Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -22,10 +22,11 @@ RUN apt-get clean all && \
|
|
22 |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
23 |
|
24 |
USER rstudio
|
|
|
25 |
RUN Rscript -e "install.packages(c('tidymodels', 'tidyverse', 'ggcorrplot', 'readxl', 'skimr'));"
|
26 |
|
27 |
# the rstudio/ path is set for building with GitHub Actions
|
28 |
-
COPY --chown=rstudio:rstudio rstudio/rstudio-prefs.json /home/rstudio/.config/rstudio
|
29 |
-
COPY --chown=rstudio:rstudio rstudio/.Rprofile /home/rstudio/
|
30 |
|
31 |
WORKDIR /home/rstudio
|
|
|
22 |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
23 |
|
24 |
USER rstudio
|
25 |
+
RUN chown rstudio:rstudio /var/run/s6
|
26 |
RUN Rscript -e "install.packages(c('tidymodels', 'tidyverse', 'ggcorrplot', 'readxl', 'skimr'));"
|
27 |
|
28 |
# the rstudio/ path is set for building with GitHub Actions
|
29 |
+
#COPY --chown=rstudio:rstudio rstudio/rstudio-prefs.json /home/rstudio/.config/rstudio
|
30 |
+
#COPY --chown=rstudio:rstudio rstudio/.Rprofile /home/rstudio/
|
31 |
|
32 |
WORKDIR /home/rstudio
|