From ef4bbfc1efdba0642e147540c2a9dac512ee992d Mon Sep 17 00:00:00 2001 From: Matthew Strasiotto Date: Thu, 17 Sep 2020 21:12:28 +1000 Subject: [PATCH] Remove bash from installation, add git --- vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrantfile b/vagrantfile index 41c6ec9..d28c350 100644 --- a/vagrantfile +++ b/vagrantfile @@ -18,7 +18,7 @@ Vagrant.configure("2") do |config| $install_script = <<-SCRIPT build_deps="golang make go-dep" - runtime_deps="dumb-init bash" + runtime_deps="dumb-init git" apt-get update && \ apt-get install -y $build_deps $runtime_deps && \