#!/bin/sh # Copyright (c) 2015 - present Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. EXEC_NAME="$0" show_usage() { echo "Usage: $EXEC_NAME [-h]" echo "" echo "Build and run the docker image. See infer/docker/README.md for more" echo "information." echo "" echo "Options:" echo " -h, --help Show this message and exit" } while [ -n "$1" ]; do arg="$1" case $arg in "-h" | "--help" ) show_usage; exit 0; ;; *) echo "unknown argument $1" show_usage; exit 1; ;; esac done if ! docker --version > /dev/null; then echo "docker install not working" exit 1 fi if [ ! -f Dockerfile ]; then echo "Dockerfile not found. Are you in the right directory?" echo "Please see infer/docker/README.md for more information." exit 1 fi NAME="infer" docker build -t $NAME . && \ docker run -it $NAME /bin/bash -c 'cd /infer/examples/; exec /bin/bash'