bash code to run or a filepath to a file containing bash code that ends with .bash or .sh
name
The image that will run the R code
bash_source
Whether the code will be from a runtime file within the source or at build time copying over from a local file in your session
escape_dollar
Default TRUE. This will turn $ into $$ within the script to avoid them being recognised as Cloud Build variables. Turn this off if you want that behaviour (e.g. my_project="$PROJECT_ID")
If you need to escape build parameters in bash scripts, you need to escape CloudBuild's substitution via $$ and bash's substitution via \$ e.g. \$$PARAM