From 0079d16b809fbb7391353e97bce429e295973dd5 Mon Sep 17 00:00:00 2001 From: Marco Franssen Date: Wed, 10 Mar 2021 15:37:40 +0100 Subject: [PATCH] fix: Add some essential dependecies on ubuntu example This enables more opensource setup actions like azure/setup-helm and workflows requiring 'make' and gcc. --- examples/ubuntu/templates/user-data.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/examples/ubuntu/templates/user-data.sh b/examples/ubuntu/templates/user-data.sh index 63d1483d7f..02a11492f4 100644 --- a/examples/ubuntu/templates/user-data.sh +++ b/examples/ubuntu/templates/user-data.sh @@ -5,7 +5,15 @@ ${pre_install} # Install AWS CLI apt-get update -DEBIAN_FRONTEND=noninteractive apt-get install -y awscli jq curl wget git uidmap +DEBIAN_FRONTEND=noninteractive apt-get install -y \ + awscli \ + jq \ + curl \ + wget \ + git \ + uidmap \ + build-essential \ + unzip USER_NAME=runners useradd -m -s /bin/bash $USER_NAME