I'm following below github repo for building a new concourse custom resource type in python.
https://github.com/apjansing/mongo_resource
But it is failing with below error in the resource check in concourse pipeline
run check step: check: Backend error: Exit status: 500,
message: {
"Type":"",
"Message":"runc exec: exit status 1: exec failed: container_linux.go:380:
starting container process caused: no such file or directory",
"Handle":"",
"ProcessID":"",
"Binary":""
}
My check file content is
#!/usr/local/bin/python
import json
if __name__ == "__main__":
print(json.dumps([{"version": "1.0.0" }]))