hack/build-base-images.sh
e3bb13a1
 #!/bin/bash
 
 # This script builds the base and release images for use by the release build and image builds.
61899520
 
b52db8df
 STARTTIME=$(date +%s)
614bf6cc
 source "$(dirname "${BASH_SOURCE}")/lib/init.sh"
e3bb13a1
 
0f2d2e2e
 # Build the base image without the default image args
 OS_BUILD_IMAGE_ARGS="${OS_BUILD_IMAGE_BASE_ARGS-}" os::build::image "${OS_ROOT}/images/base" openshift/origin-base
b52db8df
 
 ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"