add support for dockerfile build target

This commit is contained in:
Myers Carpenter 2019-01-08 14:27:14 -05:00 committed by Nándor István Krácser
parent 0eb7c2716d
commit 3cd65aba50
1 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,10 @@ DOCKERFILE=${PLUGIN_DOCKERFILE:-Dockerfile}
CONTEXT=${PLUGIN_CONTEXT:-$PWD}
LOG=${PLUGIN_LOG:-info}
if [[ -n "${PLUGIN_TARGET:-}" ]]; then
TARGET="--target=${PLUGIN_TARGET}"
fi
if [[ "${PLUGIN_CACHE:-}" == "true" ]]; then
CACHE="--cache=true"
fi
@ -41,4 +45,5 @@ fi
--dockerfile=${DOCKERFILE} \
${DESTINATIONS} \
${CACHE:-} \
${TARGET:-} \
${BUILD_ARGS:-}