You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
9 years ago
|
#!/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
|