9 lines
141 B
Bash
9 lines
141 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
[ -f airflow_extra_requirements.txt ] &&
|
||
|
pip3 install --upgrade -r airflow_extra_requirements.txt
|
||
|
|
||
|
exec airflow "$@"
|