Allow usage of mirror Jenkins Update-Center for downloading plugins

Sometimes (like today ... and many other times unfortunately) the main
Jenkins update center is down and you cannot build a Jenkins Docker image.
It is much better than to include the full base URL as JENKINS_UC_DOWNLOAD
so that the ENV variable can be overridden to point to an up-and-running site.

Example:
ENV JENKINS_UC_DOWNLOAD http://mirrors.clinkerhq.com/jenkins
diff --git a/plugins.sh b/plugins.sh
index f73a23a..f597a12 100755
--- a/plugins.sh
+++ b/plugins.sh
@@ -19,5 +19,5 @@
     [[ ${plugin[0]} =~ ^\s*$ ]] && continue
     [[ -z ${plugin[1]} ]] && plugin[1]="latest"
     echo "Downloading ${plugin[0]}:${plugin[1]}"
-    curl -s -L -f ${JENKINS_UC}/download/plugins/${plugin[0]}/${plugin[1]}/${plugin[0]}.hpi -o $REF/${plugin[0]}.jpi
+    curl -s -L -f ${JENKINS_UC_DOWNLOAD}/plugins/${plugin[0]}/${plugin[1]}/${plugin[0]}.hpi -o $REF/${plugin[0]}.jpi
 done  < $1