Describe the bug
The docs claim that ctypes is not supported.
To Reproduce
Using ctypes works just fine.
Following some commands from the official docs:
Start a container: docker run --rm -it gcr.io/distroless/python3 then type this in:
from ctypes import *
libc = CDLL("libc.so.6")
print(libc.rand())
Expected behavior
ctypes calls should not work.