Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +15 -2
Dockerfile
CHANGED
|
@@ -5,12 +5,25 @@ WORKDIR /code
|
|
| 5 |
# Install stable packages from CRAN
|
| 6 |
RUN install2.r --error \
|
| 7 |
ggExtra \
|
| 8 |
-
shiny
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
# Install development packages from GitHub
|
| 11 |
RUN installGithub.r \
|
| 12 |
rstudio/bslib \
|
| 13 |
-
rstudio/httpuv
|
|
|
|
|
|
|
| 14 |
|
| 15 |
COPY . .
|
| 16 |
|
|
|
|
| 5 |
# Install stable packages from CRAN
|
| 6 |
RUN install2.r --error \
|
| 7 |
ggExtra \
|
| 8 |
+
shiny \
|
| 9 |
+
shinythemes \
|
| 10 |
+
shinyalert \
|
| 11 |
+
shinycssloaders \
|
| 12 |
+
shinyWidgets \
|
| 13 |
+
shiny.telemetry \
|
| 14 |
+
spotifyr \
|
| 15 |
+
spsComps \
|
| 16 |
+
searcher \
|
| 17 |
+
reactable \
|
| 18 |
+
bslib \
|
| 19 |
+
dplyr
|
| 20 |
|
| 21 |
# Install development packages from GitHub
|
| 22 |
RUN installGithub.r \
|
| 23 |
rstudio/bslib \
|
| 24 |
+
rstudio/httpuv \
|
| 25 |
+
&& R -e "install.packages('devtools', repos='http://cran.rstudio.com/')" \
|
| 26 |
+
&& R -e "remotes::install_github('Ifeanyi55/SpotifyNetwork')"
|
| 27 |
|
| 28 |
COPY . .
|
| 29 |
|