airflow-kustom/images/airflow/Dockerfile

10 lines
206 B
Docker

FROM apache/airflow:2.5.3-python3.10
USER root
COPY --chown=airflow:root ./dags/ ${AIRFLOW_HOME}/dags/
COPY --chown=airflow:root ./scripts/ ${AIRFLOW_HOME}/scripts/
RUN chmod +x ./scripts/*
USER airflow