From df4f569b68c3dbbd098a350a36a370d8192512c3 Mon Sep 17 00:00:00 2001 From: Hamed Karbasi Date: Thu, 11 May 2023 23:33:02 +0330 Subject: [PATCH] Build: Update plugin installation in custom Dockerfile (#68310) Update custom dockerfile Add `set -e` command to the custom Dockerfile to prevent missing plugins in installation. --- packaging/docker/custom/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/docker/custom/Dockerfile b/packaging/docker/custom/Dockerfile index 3a4c6aa1bbd..924a631a68a 100644 --- a/packaging/docker/custom/Dockerfile +++ b/packaging/docker/custom/Dockerfile @@ -43,6 +43,7 @@ ARG GF_INSTALL_PLUGINS="" RUN if [ ! -z "${GF_INSTALL_PLUGINS}" ]; then \ OLDIFS=$IFS; \ IFS=','; \ + set -e ; \ for plugin in ${GF_INSTALL_PLUGINS}; do \ IFS=$OLDIFS; \ if expr match "$plugin" '.*\;.*'; then \