X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fc100474c5d74b20b2576bd3a8f633746c0c6fb2..844b65fa97d14fddd7f7b702328a31476932fe10:/docker/build.sh diff --git a/docker/build.sh b/docker/build.sh index 97cb97558c..cbcc840667 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -1,10 +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 -docker build -t arvados/docserver docserver + sudo apt-get update + sudo apt-get -y install ruby1.9.3 +fi + +build_tools/build.rb $*