deb-mistral/tools/docker/build.sh
Andras Kovi 7b6d76659a Fixes the Mistral Docker image
Refactored to make the docker stuff self contained and removed the
unnecessary files from the root directory. Also created a readme file to
concretize how this feature works.

Also added an example script to set up Mistral with MySQL.

Closes-Bug: #1585911

Change-Id: I7fbcccb9d7ad168c5391e71326b205d074ab01ab
Signed-off-by: Andras Kovi <akovi@nokia.com>
2016-05-27 13:26:05 +02:00

10 lines
157 B
Bash
Executable File

#!/bin/bash -xe
SCRIPT_DIR="$(dirname "$(readlink -e "${BASH_SOURCE[0]}")")"
(
cd "$SCRIPT_DIR"
docker build -t mistral-all -f Dockerfile ../..
)