feat(cleanup): cleaning up the project with somme standards

This commit is contained in:
2023-05-04 17:06:19 +02:00
parent 53ece61384
commit d84b111049
13 changed files with 151 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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