From dd52dc299229243fa34439cf8861dffd359e3e86 Mon Sep 17 00:00:00 2001 From: Zhaoxing Date: Fri, 29 Sep 2017 14:09:19 +0800 Subject: Fix the docker build error for vfc-nfvo-wfengine Change-Id: I976ba9df7fb7145563df31f1e6ee3449279fe382 Issue-id: VFC-445 Signed-off-by: Zhaoxing --- activiti-extension/src/main/docker/bin/entrypoint.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 activiti-extension/src/main/docker/bin/entrypoint.sh (limited to 'activiti-extension/src/main/docker/bin/entrypoint.sh') diff --git a/activiti-extension/src/main/docker/bin/entrypoint.sh b/activiti-extension/src/main/docker/bin/entrypoint.sh new file mode 100644 index 0000000..703b059 --- /dev/null +++ b/activiti-extension/src/main/docker/bin/entrypoint.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env sh +# $0 is a script name, +# $1, $2, $3 etc are passed arguments +# $1 is our command +CMD=$1 +case "$CMD" in + "dev" ) + ;; + "start" ) + # we can modify files here, using ENV variables passed in + # "docker create" command. It can't be done during build process. + exec ./startup.sh + ;; + * ) + # Run custom command. Thanks to this line we can still use + # "docker run our_image /bin/bash" and it will work + exec $CMD ${@:2} + ;; +esac \ No newline at end of file -- cgit 1.2.3-korg