FROM ghcr.io/quarto-dev/quarto-full:1.5.22 RUN apt-get update && apt-get install -y --no-install-recommends \ apt-utils dialog \ git iproute2 procps lsb-release \ python3 python3-pip \ r-base \ julia \ && rm -rf /var/lib/apt/lists/* RUN python3 -m pip install jupyter # Assuming Project.toml and Manifest.toml are copied to the correct locations COPY Project.toml /root/.julia/environments/v1.4/ COPY Manifest.toml /root/.julia/environments/v1.4/ RUN julia -e "using Pkg; Pkg.instantiate(); Pkg.precompile()"