File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ ENV PATH=$PATH:/usr/lib/rstudio-server/bin/quarto/bin
3131
3232USER ${NB_USER}
3333
34- COPY vscode-extensions.txt vscode-extensions.txt
35- RUN xargs -n 1 code-server --install-extension < vscode-extensions.txt
34+ COPY vscode-extensions.txt /tmp/ vscode-extensions.txt
35+ RUN xargs -n 1 code-server --install-extension < /tmp/ vscode-extensions.txt
3636
37- COPY environment.yml environment.yml
37+ COPY environment.yml /tmp/ environment.yml
3838RUN conda update --all --solver=classic -n base -c conda-forge conda && \
39- conda env update --file environment.yml
39+ conda env update --file /tmp/ environment.yml
4040
4141# When run at build-time, install.r automagically handles any necessary apt-gets
42- COPY install.r install.r
43- RUN Rscript install.r
42+ COPY install.r /tmp/ install.r
43+ RUN Rscript /tmp/ install.r
4444
You can’t perform that action at this time.
0 commit comments