An init script is used to install system libraries, per below.
Adding the script to a Personal Compute consistently works. The same script is added to a Workflows job via cluster config, which intermittently fails, as shown in error message below.
Both Personal and Workflow clusters are on 14.3 LTS runtime; surprised with the instability of the latter.
Any troubleshooting advice is appreciated.
Init Script
#!/bin/bash
set -euxo pipefail
if [[ $DB_IS_DRIVER = "TRUE" ]]; then
sudo apt-get -y update && apt-get install -y libudunits2-dev libgdal-dev libgeos-dev libproj-dev
fi
Error