From: 오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Thu, 25 Oct 2018 08:22:16 +0000 (+0900) Subject: Fix docker-shell command bug (#3336) X-Git-Tag: 0.3~523 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5dff5b0291f2d1249bdad1c64b313bd778aef96;p=platform%2Fcore%2Fml%2Fnnfw.git Fix docker-shell command bug (#3336) Need docker option -it for interactive Signed-off-by: Hyeongseok Oh --- diff --git a/scripts/command/docker-shell b/scripts/command/docker-shell index 8549d20..9f24c36 100755 --- a/scripts/command/docker-shell +++ b/scripts/command/docker-shell @@ -2,6 +2,7 @@ source "${NNFW_SCRIPT_PATH}/docker.configuration" +DOCKER_RUN_OPTS+=" -it" docker run $DOCKER_RUN_OPTS $DOCKER_ENV_VARS $DOCKER_VOLUMES $DOCKER_IMAGE_NAME "/bin/bash" EXITCODE=$?