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.
This commit is contained in:
Hamed Karbasi 2023-05-11 23:33:02 +03:30 committed by GitHub
parent 11c388a10f
commit df4f569b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 \