blob: e7e826366f19780c5593b65141abb7a18fcebbec [file] [log] [blame]
FROM apache/airflow:latest-python3.10
ADD requirements.txt .
RUN pip install -r requirements.txt
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends graphviz \
&& apt-get autoremove -yqq --purge \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
USER airflow