diff --git a/Dockerfile b/Dockerfile index 3c81b9df..ed8be824 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,11 +11,11 @@ ENV EXTRA_VARS="" FROM builder AS netbootxyz-production ENV EXTRA_VARS="--extra-vars @script/netbootxyz-overrides.yml" -FROM netbootxyz-$NBXYZ_OVERRIDES as final +FROM netbootxyz-${NBXYZ_OVERRIDES} as final RUN \ echo "**** running ansible ****" && \ cd /ansible && \ - ansible-playbook -i inventory site.yml $EXTRA_VARS + ansible-playbook -i inventory site.yml ${EXTRA_VARS} # runtime stage FROM alpine:latest