From f57942f2575dc26c9487688ded773a0abdab5c61 Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Sun, 29 Apr 2018 20:03:50 +0200 Subject: pipenv and dockerfile (#62) pipenv and dockerfile --- Vagrant_bootstrap.sh | 87 ---------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 Vagrant_bootstrap.sh (limited to 'Vagrant_bootstrap.sh') diff --git a/Vagrant_bootstrap.sh b/Vagrant_bootstrap.sh deleted file mode 100644 index 307107d4..00000000 --- a/Vagrant_bootstrap.sh +++ /dev/null @@ -1,87 +0,0 @@ -#!/bin/bash - -# Dependencies -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 -add-apt-repository -y ppa:jonathonf/python-3.6 -echo "deb http://download.rethinkdb.com/apt xenial main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list -wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - -apt-get update - -# Python3.6 -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 -python3.6 -m pip install -r /vagrant/requirements-ci.txt -python3.6 -m pip install gunicorn - -# RethinkDB -apt-get install -y rethinkdb - -tee /etc/rethinkdb/instances.d/rethinkdb.conf <