From cc8c261aadf4e74b2ddde30f2b02c1876b30325b Mon Sep 17 00:00:00 2001 From: groupuser Date: Thu, 26 Mar 2026 06:31:52 +0000 Subject: [PATCH] Delete Dockerfile --- Dockerfile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a453993..0000000 --- a/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -FROM apache/airflow:3.1.8-python3.12 - -ARG AIRFLOW_VERSION=3.1.8 - -USER root -RUN apt-get update && \ - apt-get install -y --no-install-recommends git openssl && \ - apt-get upgrade -y openssl && \ - openssl version -a && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - - -COPY cheetah-airflow/${AIRFLOW_VERSION}/requirements.txt /opt/setup/requirements.txt -RUN chown -R airflow:root /opt/setup - - -USER airflow -WORKDIR /opt/setup -RUN pip install --no-cache-dir -r /opt/setup/requirements.txt - -COPY --chown=airflow:root cheetah-airflow/${AIRFLOW_VERSION}/plugins /opt/airflow/plugins - -RUN echo "Cheetah Airflow custom image build complete (Airflow ${AIRFLOW_VERSION})"