Spaces:
Runtime error
Runtime error
Try building the dockerfile
Browse files- .gitignore +4 -0
- Dockerfile +6 -1
.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.Rproj.user
|
2 |
+
.Rhistory
|
3 |
+
.RData
|
4 |
+
.Ruserdata
|
Dockerfile
CHANGED
@@ -7,10 +7,15 @@ 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 |
|
|
|
7 |
ggExtra \
|
8 |
shiny
|
9 |
|
10 |
+
# Install Rust for tok
|
11 |
+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
12 |
+
|
13 |
# Install development packages from GitHub
|
14 |
+
ENV TORCH_INSTALL=1
|
15 |
RUN installGithub.r \
|
16 |
rstudio/bslib \
|
17 |
+
rstudio/httpuv \
|
18 |
+
mlverse/minhub
|
19 |
|
20 |
COPY . .
|
21 |
|