Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit ef1b490

Browse files
committed
Work around permission issue.
1 parent 1eacf13 commit ef1b490

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ RUN JULIA_DEPOT_PATH=/usr/local/share/julia \
3030

3131
# generate the device runtime library for all known and supported devices
3232
RUN JULIA_DEPOT_PATH=/usr/local/share/julia \
33-
julia -e 'using CUDA; CUDA.precompile_runtime()'
33+
julia -e 'using CUDA; CUDA.precompile_runtime()' && \
34+
chmod 644 /usr/local/share/julia/compiled/v1.5/GPUCompiler/*/*.bc
35+
# TODO: fix this in GPUCompiler.jl
3436

3537

3638
# user environment

0 commit comments

Comments
 (0)