Skip to content

Commit

Permalink
Refactor Dockerfile: separate IJulia package installation into its ow…
Browse files Browse the repository at this point in the history
…n RUN command
  • Loading branch information
jeremiahpslewis committed Dec 19, 2024
1 parent 0843309 commit 4cb90cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ RUN QUARTO_VERSION=1.7.5 \
&& apt-get -qq install -y lmodern

RUN apt-get install curl && \
curl -fsSL https://install.julialang.org | sh -s -- -y --default-channel release && \
julia -e 'using Pkg; Pkg.add("IJulia")'
curl -fsSL https://install.julialang.org | sh -s -- -y --default-channel release
RUN julia -e 'using Pkg; Pkg.add("IJulia")'

COPY . /app

Expand Down

0 comments on commit 4cb90cb

Please sign in to comment.