Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to airflow 2.10.3 #109

Merged
merged 2 commits into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ARG AIRFLOW_HOME=/usr/local/airflow
ENV AIRFLOW_HOME ${AIRFLOW_HOME}
ARG AIRFLOW_USER=airflow
ENV AIRFLOW_USER ${AIRFLOW_USER}
ARG AIRFLOW_VERSION=2.10.2
ARG AIRFLOW_VERSION=2.10.3
ENV AIRFLOW_VERSION ${AIRFLOW_VERSION}
ARG MINICONDA_PATH=/opt/conda
ARG MINICONDA_URL=https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh
Expand All @@ -38,7 +38,7 @@ RUN savedAptMark="$(apt-mark showmanual)" \
&& rm ~/miniconda.sh \
&& conda update conda \
&& conda install -y nomkl \
&& conda install -y -c conda-forge -c main boto3=1.35.16 botocore=1.35.16 celery=5.4.0 cryptography=42.0.8 gevent kombu=5.4.1 matplotlib-base mysql-connector-python=8.4.0 networkx=3.3 numpy=1.26.4 pillow pysimdjson redis-py=5.0.8 scipy zfpy zstandard=0.23.0 \
&& conda install -y -c conda-forge -c main boto3=1.35.36 botocore=1.35.36 celery=5.4.0 cryptography=42.0.8 gevent matplotlib-base mysql-connector-python=8.4.0 networkx=3.4.2 numpy=1.26.4 pillow pysimdjson redis-py=5.2.0 scipy zfpy zstandard=0.23.0 \
&& find ${MINICONDA_PATH} -follow -type f -name '*.a' -delete \
&& find ${MINICONDA_PATH} -follow -type f -name '*.js.map' -delete \
&& conda clean -yaf \
Expand Down