Merge branch 'master' into 2449-keep-write-blocks
[arvados.git] / docker / build.sh
index 74d2ed33e1e91cfc22dfe5da6cd3461377c95a44..cbcc840667c4001365d5644be6fc4e1b16817d90 100755 (executable)
@@ -1,9 +1,14 @@
-#! /bin/sh
+#! /bin/bash
 
-# build the base wheezy image
-./mkimage-debootstrap.sh arvados/debian wheezy http://debian.lcs.mit.edu/debian/
+# make sure Ruby 1.9.3 is installed before proceeding
+if ! ruby -e 'exit RUBY_VERSION >= "1.9.3"' 2>/dev/null
+then
+    echo "Installing Arvados requires at least Ruby 1.9.3."
+    echo "You may need to enter your password."
+    read -p "Press Ctrl-C to abort, or else press ENTER to install ruby1.9.3 and continue. " unused
 
-# build the Docker images
-docker build -t arvados/base base
-docker build -t arvados/api api
-docker build -t arvados/docserver docserver
+    sudo apt-get update
+    sudo apt-get -y install ruby1.9.3
+fi
+
+build_tools/build.rb $*