diff --git a/nodered/scripts/install_devtools.sh b/nodered/scripts/install_devtools.sh new file mode 100644 index 0000000..d3e1e0b --- /dev/null +++ b/nodered/scripts/install_devtools.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -ex + +# Installing Devtools +if [[ ${TAG_SUFFIX} != "minimal" ]]; then + echo "Installing devtools" + apt-get install --no-cache --virtual devtools build-base linux-headers udev python python3 +else + echo "Skip installing devtools" +fi