When compiling with bazel build runsc, it assumes that the default python version is 2. When using version 3 one can expect error messages such as bytes-like object is required, not 'str' or CRITICAL:root:VDSO contains relocations: b'\nThere are no relocations in this file.\n'.
Changing default python version to python2 fixes this issue.
When compiling with
bazel build runsc, it assumes that the default python version is 2. When using version 3 one can expect error messages such asbytes-like object is required, not 'str'orCRITICAL:root:VDSO contains relocations: b'\nThere are no relocations in this file.\n'.Changing default python version to python2 fixes this issue.