Getting the below error while installing Fuego 1.1 version. Please check the tail part of the install log below. Step 19 : ARG JENKINS_SHA=bfc226aabe2bb089623772950c4cc13aee613af1 ---> Running in 854ebad111af ---> cea9f6c28fae Removing intermediate container 854ebad111af Step 20 : ARG JENKINS_URL= https://pkg.jenkins.io/debian-stable/binary/jenkins_${JENKINS_VERSION}_all.deb ---> Running in ceb272a7f3c6 ---> ab2e02d6fc90 Removing intermediate container ceb272a7f3c6 Step 21 : ENV JENKINS_HOME /var/lib/jenkins ---> Running in 4fdccd123c72 ---> cfec24ad8eeb Removing intermediate container 4fdccd123c72 Step 22 : RUN groupadd -g ${gid} ${group} && useradd -l -m -d "${JENKINS_HOME}" -u ${uid} -g ${gid} -G sudo -s /bin/bash ${user} ---> Running in 6be108a1d2b3 ---> 9d4b6b876889 Removing intermediate container 6be108a1d2b3 Step 23 : RUN wget -nv ${JENKINS_URL} ---> Running in 9dcb5a00c720 2017-04-08 03:35:44 URL: https://prodjenkinsreleases.blob.core.windows.net/debian-stable/jenkins_2.32.1_all.deb [69794436/69794436] -> "jenkins_2.32.1_all.deb" [1] ---> 41e18bbbfee4 Removing intermediate container 9dcb5a00c720 Step 24 : RUN echo "${JENKINS_SHA} jenkins_${JENKINS_VERSION}_all.deb" | sha1sum -c - ---> Running in ee3158906841 jenkins_2.32.1_all.deb: OK ---> e850171c2fa4 Removing intermediate container ee3158906841 Step 25 : RUN dpkg -i jenkins_${JENKINS_VERSION}_all.deb ---> Running in f7ac4b047ab7 Selecting previously unselected package jenkins. (Reading database ... 30760 files and directories currently installed.) Preparing to unpack jenkins_2.32.1_all.deb ... Unpacking jenkins (2.32.1) ... Setting up jenkins (2.32.1) ... invoke-rc.d: policy-rc.d denied execution of start. Processing triggers for systemd (215-17+deb8u6) ... ---> 0091b24ea335 Removing intermediate container f7ac4b047ab7 Step 26 : RUN rm jenkins_${JENKINS_VERSION}_all.deb ---> Running in 28c585cf9b4e ---> fa7a1e599af4 Removing intermediate container 28c585cf9b4e Step 27 : RUN git clone https://github.com/tbird20d/ttc.git $INST_FUEGO_ENGINE_PATH/ttc ---> Running in 2d0791fa8bc5 Cloning into '/ttc'... ---> 85db92ec9e0f Removing intermediate container 2d0791fa8bc5 Step 28 : RUN $INSTALL_FUEGO_ENGINE_PATH/ttc/install.sh /usr/local/bin ---> Running in dc524bddc745 Copying from /ttc to /usr/local/bin... ---> fdb85a84ef8c Removing intermediate container dc524bddc745 Step 29 : RUN perl -p -i -e "s#config_dir = \"/etc\"#config_dir = \"/fuego-ro/conf\"#" /usr/local/bin/ttc ---> Running in d8806f56c4e4 ---> c263909c4ff8 Removing intermediate container d8806f56c4e4 Step 30 : RUN /bin/bash -c 'git clone "https://github.com/frowand/serio" ; chown -R jenkins serio ; cd serio ; cp serio /usr/local/bin/ ; ln -s /usr/local/bin/serio /usr/local/bin/sercp ; ln -s /usr/local/bin/serio /usr/local/bin/sersh ; cd -' ---> Running in d30d93ba5656 Cloning into 'serio'... / ---> bf467b0236fd Removing intermediate container d30d93ba5656 Step 31 : RUN source /etc/default/jenkins && JENKINS_ARGS="$JENKINS_ARGS --prefix=/fuego" && sed -i -e "s#JENKINS_ARGS.*#JENKINS_ARGS\=\"${JENKINS_ARGS}\"#g" /etc/default/jenkins ---> Running in 9cc9272ed6a4 ---> 85db72cbfc81 Removing intermediate container 9cc9272ed6a4 Step 32 : RUN source /etc/default/jenkins && JAVA_ARGS="$JAVA_ARGS -Djenkins.install.runSetupWizard=false" && if [ -n "$HTTP_PROXY" ]; then PROXYSERVER=$(echo $http_proxy | sed -E 's/^http://' | sed -E 's/\///g' | sed -E 's/(.*):(.*)/\1/') && PROXYPORT=$(echo $http_proxy | sed -E 's/^http://' | sed -E 's/\///g' | sed -E 's/(.*):(.*)/\2/') && JAVA_ARGS="$JAVA_ARGS -Dhttp.proxyHost="${PROXYSERVER}" -Dhttp.proxyPort="${PROXYPORT}" -Dhttps.proxyHost="${PROXYSERVER}" -Dhttps.proxyPort="${PROXYPORT}; fi && sed -i -e "s#^JAVA_ARGS.*#JAVA_ARGS\=\"${JAVA_ARGS}\"#g" /etc/default/jenkins; ---> Running in 6721c884cf16 ---> 027eb9ad54a5 Removing intermediate container 6721c884cf16 Step 33 : RUN service jenkins start && sleep 30 && sudo -u jenkins java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar -s http://localhost:8080/fuego install-plugin description-setter && sudo -u jenkins java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar -s http://localhost:8080/fuego install-plugin pegdown-formatter ---> Running in bfbc88626a6f Starting Jenkins Continuous Integration Server: jenkins. description-setter is neither a valid file, URL, nor a plugin artifact name in the update center No update center data is retrieved yet from: http://updates.jenkins-ci.org/update-center.json description-setter looks like a short plugin name. Did you mean ?null?? ERROR: Error occurred, see previous output. The command '/bin/sh -c service jenkins start && sleep 30 && sudo -u jenkins java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar -s http://localhost:8080/fuego install-plugin description-setter && sudo -u jenkins java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar -s http://localhost:8080/fuego install-plugin pegdown-formatter' returned a non-zero code: 5 [sudo] password for dhinakar: Any clue what is the issue? Regards Dhinakar