Update Dockerfile

ch permissions
This commit is contained in:
izu
2026-03-03 08:44:48 +00:00
parent 0b5eb8a9c9
commit a96c2ee57f

View File

@@ -1,3 +1,7 @@
FROM apache/airflow:2.7.1
USER root
RUN mkdir -p /opt/airflow/logs /opt/airflow/dags /opt/airflow/plugins \
&& chown -R airflow:root /opt/airflow
USER airflow
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt