Is there a way to resolve the multiprocessing error from AWS Lambda with numba

I am pretty new to this library. I am using ranx which imports numba library. I created an AWS lambda function using docker image. When running ranx, I get this error message

/var/lang/lib/python3.10/site-packages/numba/np/ufunc/parallel.py:324: UserWarning: Could not obtain multiprocessing lock due to OS level error: [Errno 38] Function not implemented.  
A likely cause of this problem is '/dev/shm' is missing orread-only such that necessary semaphores cannot be written.

which is coming from numba/numba/np/ufunc/parallel.py at main · numba/numba · GitHub.
I know lambda supports Multiprocessing Pipe and not other methods. Is there a workaround for this?
Thanks!