Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -3
Dockerfile
CHANGED
|
@@ -1,9 +1,12 @@
|
|
| 1 |
# Hugging Face Spaces用 R Shiny Dockerfile
|
| 2 |
# rocker/shiny-verse: tidyverse(dplyr含む)が事前インストール済み
|
| 3 |
-
FROM rocker/shiny-verse:4.3.2
|
| 4 |
|
| 5 |
-
# leafletのみインストール
|
| 6 |
-
RUN R -e "install.packages('leaflet', repos='https://cloud.r-project.org/')"
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
# アプリディレクトリ
|
| 9 |
WORKDIR /app
|
|
|
|
| 1 |
# Hugging Face Spaces用 R Shiny Dockerfile
|
| 2 |
# rocker/shiny-verse: tidyverse(dplyr含む)が事前インストール済み
|
| 3 |
+
# FROM rocker/shiny-verse:4.3.2
|
| 4 |
|
| 5 |
+
# # leafletのみインストール
|
| 6 |
+
# RUN R -e "install.packages('leaflet', repos='https://cloud.r-project.org/')"
|
| 7 |
+
|
| 8 |
+
FROM continuumio/miniconda3:latest
|
| 9 |
+
RUN conda install -c conda-forge -y r-base=4.3 r-shiny r-dplyr r-leaflet
|
| 10 |
|
| 11 |
# アプリディレクトリ
|
| 12 |
WORKDIR /app
|