From e37cfd3aafd772e4b535d3024464105b34c85620 Mon Sep 17 00:00:00 2001 From: Justin Shattuck Date: Sat, 13 Aug 2016 02:53:09 -0700 Subject: [PATCH] build-essential necessary for make (Makefile) --- scripts/deploy_beeswax.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deploy_beeswax.sh b/scripts/deploy_beeswax.sh index 3a342d4e..18076804 100644 --- a/scripts/deploy_beeswax.sh +++ b/scripts/deploy_beeswax.sh @@ -14,6 +14,7 @@ HONEYPOT_NAME=beeswax install_dependencies() { apt-get update apt-get -y install docker.io tcpdump gcc golang git supervisor python-pip + apt-get -y install build-essential pip install docker-compose }