Skip to content

Commit

Permalink
Fix: use python 3.9 for airflow dockerfile template (#3476)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesittas authored Dec 5, 2024
1 parent 2aa92a0 commit f1b4215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/airflow/Dockerfile.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM apache/spark:3.5.0-python3 AS spark

FROM apache/airflow:$AIRFLOW_VERSION-python3.8
FROM apache/airflow:$AIRFLOW_VERSION-python3.9

USER root

Expand Down Expand Up @@ -60,7 +60,7 @@ RUN pip install apache-airflow-providers-apache-spark==4.8.0 --no-deps
RUN pip install apache-airflow-providers-databricks==6.4.0 \
apache-airflow-providers-github==2.6.0 \
apache-airflow-providers-common-sql==1.13.0 \
pandas==1.5.2 # python 3.8 spark 3.4 and pandas 2.0 have issues with casting timestamp
pandas==1.5.2 # spark 3.4 and pandas 2.0 have issues with casting timestamp

# Install Deps
USER root
Expand Down

0 comments on commit f1b4215

Please sign in to comment.