Skip to content

Commit 9d2c54a

Browse files
committed
Run Pkg.gc before instantiating the manifest
1 parent 77a81b1 commit 9d2c54a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM ghcr.io/juliaparallel/julia-hpc-tutorial-sc24:main
2+
FROM julia:1.11.2
33

44
# Install git
55
RUN /bin/sh -c 'export DEBIAN_FRONTEND=noninteractive \
@@ -19,4 +19,4 @@ RUN julia --color=yes -e 'using InteractiveUtils; versioninfo()'
1919
RUN mkdir -p /root/.julia/environments/v1.11
2020
COPY Project.toml /root/.julia/environments/v1.11/Project.toml
2121
COPY Manifest-v1.11.toml /root/.julia/environments/v1.11/Manifest.toml
22-
RUN . /julia_cpu_target.sh && julia --color=yes -e 'using Pkg; Pkg.instantiate(); import Conda; Conda.add("jupyterlab")'
22+
RUN . /julia_cpu_target.sh && julia --color=yes -e 'using Pkg; Pkg.gc(); Pkg.instantiate(); import Conda; Conda.add("jupyterlab")'

0 commit comments

Comments
 (0)