You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/11 22:34:47 UTC

[airflow] 06/32: The group of embedded DAGs should be root to be OpenShift compatible (#9794)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit d61c33db6118c1f0e16341e2dd8b20557c041677
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Mon Jul 13 20:47:55 2020 +0200

    The group of embedded DAGs should be root to be OpenShift compatible (#9794)
    
    (cherry picked from commit 8f6b8378aa46c8226b8dd56c509affe7f2b5a4bc)
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 89225b8..a882178 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -358,7 +358,7 @@ COPY scripts/prod/clean-logs.sh /clean-logs
 
 ARG EMBEDDED_DAGS="empty"
 
-COPY --chown=airflow:airflow ${EMBEDDED_DAGS}/ ${AIRFLOW_HOME}/dags/
+COPY --chown=airflow:root ${EMBEDDED_DAGS}/ ${AIRFLOW_HOME}/dags/
 
 RUN chmod a+x /entrypoint /clean-logs