Skip to content

Commit

Permalink
creates julia image
Browse files Browse the repository at this point in the history
  • Loading branch information
Nowosad committed Sep 18, 2024
1 parent f8aac8a commit e899e69
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions julia/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM julia:1.10.0-rc3-bullseye
# Install wget and unzip:
RUN apt update && apt install -y \
wget \
unzip \
git \
&& rm -rf /var/lib/apt/lists/*
# Install quarto
RUN wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.54/quarto-1.5.54-linux-amd64.deb
RUN dpkg -i quarto*
RUN rm quarto*
# Install quarto julia requirements
RUN julia -e 'using Pkg; Pkg.add("IJulia"); Pkg.add("Revise")'

0 comments on commit e899e69

Please sign in to comment.