Parameterized bash/python in the prod image (#9157)

This commit is contained in:
Jarek Potiuk 2020-06-06 09:48:02 +02:00 коммит произвёл GitHub
Родитель 032b8ef44a
Коммит b809afa3e3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -103,7 +103,11 @@ if [[ -n ${AIRFLOW__CELERY__BROKER_URL} ]] && \
fi
if [[ ${AIRFLOW_COMMAND} == "bash" ]]; then
exec "/bin/bash"
shift
exec "/bin/bash" "${@}"
elif [[ ${AIRFLOW_COMMAND} == "python" ]]; then
shift
exec "python" "${@}"
fi
# Run the command