Create install_devtools.sh

This commit is contained in:
Joshua Schnabel
2020-04-28 21:45:49 +02:00
committed by GitHub
parent 56a676d075
commit b5d174a18d

View File

@ -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