**Describe the bug** The [docs](https://github.com/GoogleContainerTools/distroless/blob/main/python3/README.md) claim that ctypes is not supported. **To Reproduce** Using ctypes works just fine. Following some commands from the [official docs](https://docs.python.org/3/library/ctypes.html): Start a container: `docker run --rm -it gcr.io/distroless/python3` then type this in: ```python from ctypes import * libc = CDLL("libc.so.6") print(libc.rand()) ``` **Expected behavior** ctypes calls should not work.