#!/bin/bash # Exit on first failing command. set -e # Echo commands to console. set -x IMAGE_NAME="ingredient-phrase-tagger-image" CONTAINER_NAME="ingredient-phrase-tagger-container" docker build \ --tag "$IMAGE_NAME" \ . docker run \ --tty \ --detach \ --name "$CONTAINER_NAME" \ "$IMAGE_NAME" docker exec "$CONTAINER_NAME" ./build.sh