Skip to content

Commit

Permalink
fix: Add some essential dependecies on ubuntu example
Browse files Browse the repository at this point in the history
This enables more opensource setup actions like azure/setup-helm and workflows requiring 'make' and gcc.
  • Loading branch information
marcofranssen authored and npalm committed Jun 1, 2021
1 parent 5b3fc5b commit 0079d16
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion examples/ubuntu/templates/user-data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0079d16

Please sign in to comment.