Skip to content

Commit 610911c

Browse files
committed
tidy
1 parent 3d18716 commit 610911c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ ENV PATH=$PATH:/usr/lib/rstudio-server/bin/quarto/bin
3131

3232
USER ${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
3838
RUN 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

0 commit comments

Comments
 (0)