build.sh 250 B

1234567891011121314
  1. #!/bin/bash
  2. set -e
  3. set -o pipefail
  4. script_dir="`cd $(dirname $0); pwd`"
  5. pushd $script_dir
  6. docker build -t commontk/ctk-test:opengl-qt4 $script_dir -f Dockerfile-qt4
  7. docker build -t commontk/ctk-test:opengl-qt5 $script_dir -f Dockerfile-qt5
  8. popd