(fix) Remove typo from build-args

- The make command to build images had extra characters
  causing invalid build-args

Change-Id: I0ae46d8760f0898c254d2f05991b9703f76078b2
This commit is contained in:
Hussey, Scott (sh8121) 2019-04-29 16:29:35 -05:00
parent 28b4d6fa65
commit dfe7c0508d
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ fi
if [[ ! -z "${PIP_INDEX_URL}" ]]
then
ADDL_BUILD_ARGS="${ADDL_BUILD_ARGS}| --build-arg PIP_INDEX_URL=${PIP_INDEX_URL}"
ADDL_BUILD_ARGS="${ADDL_BUILD_ARGS}| --build-arg PIP_TRUSTED_HOST=${PIP_TRUSTED_HOST}"
ADDL_BUILD_ARGS="${ADDL_BUILD_ARGS} --build-arg PIP_INDEX_URL=${PIP_INDEX_URL}"
ADDL_BUILD_ARGS="${ADDL_BUILD_ARGS} --build-arg PIP_TRUSTED_HOST=${PIP_TRUSTED_HOST}"
fi
docker build --network host -t ${IMAGE} --label ${LABEL} \