X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2944aa770a1fd1870bc15f46aee37177d32c3b9c..137c26497b8bf7454da2e62842e038f69569604b:/docker/build.sh diff --git a/docker/build.sh b/docker/build.sh index 5790662b57..cbcc840667 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -1,9 +1,14 @@ -#! /bin/sh +#! /bin/bash -# build the base wheezy image, if it doesn't already exist -(docker images | grep '^arvados/debian') || \ - ./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 + sudo apt-get update + sudo apt-get -y install ruby1.9.3 +fi + +build_tools/build.rb $*