dfalbel commited on
Commit
b87f19d
1 Parent(s): ca30460

Separate instalation

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -8,13 +8,19 @@ RUN install2.r --error \
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 . .
 
8
  shiny
9
 
10
  # Install Rust for tok
11
+
12
+ RUN apt-get -y update && \
13
+ apt-get -y install curl && \
14
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
15
 
16
  # Install development packages from GitHub
17
  ENV TORCH_INSTALL=1
18
  RUN installGithub.r \
19
  rstudio/bslib \
20
  rstudio/httpuv \
21
+ mlverse/tok
22
+
23
+ RUN installGithub.r \
24
  mlverse/minhub
25
 
26
  COPY . .