From ef4b897c1f959a8458d6f231977a8bee013f6ca2 Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Fri, 2 Mar 2018 19:45:47 +0100 Subject: adds vagrant file (#14) * adds vagrant file * reduce memory allocation --- scripts/vagrant_bootstrap.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 scripts/vagrant_bootstrap.sh (limited to 'scripts/vagrant_bootstrap.sh') diff --git a/scripts/vagrant_bootstrap.sh b/scripts/vagrant_bootstrap.sh new file mode 100644 index 000000000..a9819fa4f --- /dev/null +++ b/scripts/vagrant_bootstrap.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +apt-get update +apt-get install -y software-properties-common +apt-get install -y python-software-properties +apt-get install -y curl +apt-get install -y apt-transport-https + +# Python3.6 +add-apt-repository -y ppa:jonathonf/python-3.6 +apt-get update +apt-get install -y python3.6 +apt-get install -y python3.6-dev +apt-get install -y build-essential +curl -s https://bootstrap.pypa.io/get-pip.py | python3.6 - +python3.6 -m pip install -r /vagrant/requirements.txt -- cgit v1.2.3