We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2770a commit 2c8a417Copy full SHA for 2c8a417
start-build-env.sh
@@ -87,7 +87,7 @@ DOCKER_INTERACTIVE_RUN=${DOCKER_INTERACTIVE_RUN-"-i -t"}
87
# within the container and use the result on your normal
88
# system. And this also is a significant speedup in subsequent
89
# builds because the dependencies are downloaded only once.
90
-dockerargs=("--rm=true")
+dockerargs=(--rm=true)
91
dockerargs+=($DOCKER_INTERACTIVE_RUN)
92
# use urandom to increase entropy
93
dockerargs+=(-v "/dev/urandom:/dev/random${V_OPTS:-}")
@@ -102,7 +102,5 @@ dockerargs+=(-w "${DOCKER_HOME_DIR}/hadoop")
102
# set user
103
dockerargs+=(-u "${USER_ID}")
104
105
-set -x
106
-
107
docker run "${dockerargs[@]}" \
108
"hadoop-build-${USER_ID}" "$@"
0 commit comments