File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ RUN set -ex \
6565 /usr/share/doc-base
6666
6767COPY script/entrypoint.sh ${AIRFLOW_HOME}/entrypoint.sh
68- COPY config/airflow.cfg ${AIRFLOW_HOME}/airflow.cfg
6968
7069RUN chown -R airflow: ${AIRFLOW_HOME} \
7170 && chmod +x ${AIRFLOW_HOME}/entrypoint.sh
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ POSTGRES_HOST="postgres"
77POSTGRES_PORT=" 5432"
88RABBITMQ_HOST=" rabbitmq"
99RABBITMQ_CREDS=" airflow:airflow"
10- FERNET_KEY=$( python -c " from cryptography.fernet import Fernet; FERNET_KEY = Fernet.generate_key().decode(); print FERNET_KEY" )
10+ FERNET_KEY=$( python -c " from cryptography.fernet import Fernet; FERNET_KEY = Fernet.generate_key().decode(); print( FERNET_KEY) " )
1111
1212# Load DAGs exemples (default: Yes)
1313if [ " x$LOAD_EX " = " xn" ]; then
You can’t perform that action at this time.
0 commit comments