Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +8 -2
Dockerfile
CHANGED
|
@@ -20,6 +20,12 @@ RUN apt-get update && apt-get install -y \
|
|
| 20 |
# First install httpuv explicitly before shiny
|
| 21 |
RUN R -e 'install.packages("httpuv", repos="https://cloud.r-project.org")'
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
# Install R packages from CRAN
|
| 24 |
RUN install2.r --error \
|
| 25 |
remotes \
|
|
@@ -38,10 +44,10 @@ RUN install2.r --error \
|
|
| 38 |
arrow
|
| 39 |
|
| 40 |
# Install magick separately
|
| 41 |
-
RUN R -e 'install.packages("magick", repos="https://cloud.r-project.org")'
|
| 42 |
|
| 43 |
# Install showtext from GitHub
|
| 44 |
-
RUN R -e 'remotes::install_github("yixuan/showtext")'
|
| 45 |
|
| 46 |
# Install fonts
|
| 47 |
RUN apt-get update && apt-get install -y fonts-roboto
|
|
|
|
| 20 |
# First install httpuv explicitly before shiny
|
| 21 |
RUN R -e 'install.packages("httpuv", repos="https://cloud.r-project.org")'
|
| 22 |
|
| 23 |
+
# Install magick separately
|
| 24 |
+
RUN R -e 'install.packages("magick", repos="https://cloud.r-project.org")'
|
| 25 |
+
|
| 26 |
+
# Install showtext from GitHub
|
| 27 |
+
RUN R -e 'remotes::install_github("yixuan/showtext")'
|
| 28 |
+
|
| 29 |
# Install R packages from CRAN
|
| 30 |
RUN install2.r --error \
|
| 31 |
remotes \
|
|
|
|
| 44 |
arrow
|
| 45 |
|
| 46 |
# Install magick separately
|
| 47 |
+
#RUN R -e 'install.packages("magick", repos="https://cloud.r-project.org")'
|
| 48 |
|
| 49 |
# Install showtext from GitHub
|
| 50 |
+
#RUN R -e 'remotes::install_github("yixuan/showtext")'
|
| 51 |
|
| 52 |
# Install fonts
|
| 53 |
RUN apt-get update && apt-get install -y fonts-roboto
|