Ray and Numba cache

I am using a number of Numba (v 0.53) JIT functions within ray (v1.4) actors. It appears as though the ray actors are not reading the numba cache (*.nbi, *nbc files in pycache), and thus every time I run, there is significant overhead while the each of the actors compile the numba codes the first time they are seen by the actor.

Is there anyway to avoid the recompile? Can I point the ray actors at the pycache of the project?