Skip to content

Commit

Permalink
Update Dockerfile: set Julia installation paths and adjust environmen…
Browse files Browse the repository at this point in the history
…t variables
  • Loading branch information
jeremiahpslewis committed Dec 19, 2024
1 parent 4cb90cb commit 1b5182a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ RUN QUARTO_VERSION=1.7.5 \
&& rm quarto.deb \
&& apt-get -qq install -y lmodern

ENV JULIA_DEPOT_PATH=/opt/julia_depot
ENV JULIAUP_DEPOT_PATH=/opt/juliaup

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

COPY . /app
Expand Down

0 comments on commit 1b5182a

Please sign in to comment.