I can specify the entrypoint key with:
```
"entrypoint": ""
```
But, how do I specify arguments (e.g "script.py") to the entrypoint? I searched for terms like "google cloud batch json config file" and could not find any relevant results.
Hello there,
To specify arguments to it, you could use the `commands` field.
Please take a look at the reference doc: https://cloud.google.com/batch/docs/reference/rest/v1alpha/projects.locations.jobs#container
And an simple example:
Thanks!