I've added the following bash script in the App Actions > Startup Bash & Packages section, which appears to successfully install libwebp-dev (I can find encode.h in /usr/include/webp/, which didn't exist previously)
#!/bin/bash
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo apt-get install -y libwebp-dev
sudo find / -print | grep -i 'encode.h'
Still, when I deploy my app, I continue to get the "fatal error: webp/encode.h: No such file or directory" message
The referenced line producing the fatal error is a C header include: #include <webp/encode.h>, which should find the webp directory in /usr/include
I'm deploying from the CLI with the following command (using actual app name, not myapp): nc deploy -i myapp -bp go
Not sure what I'm missing here...