add support for dockerfile build target
This commit is contained in:
parent
0eb7c2716d
commit
3cd65aba50
1 changed files with 5 additions and 0 deletions
|
@ -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:-}
|
||||
|
|
Reference in a new issue