first commit

This commit is contained in:
Ankit Malik
2026-06-22 16:03:00 +05:30
commit e218aafc26
46 changed files with 5416 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
FROM apache/airflow:3.2.1-python3.14
USER root
RUN apt-get update && apt-get install -y \
curl \
gcc \
g++ \
unixodbc-dev \
&& rm -rf /var/lib/apt/lists/*
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin:${PATH}"
USER airflow
WORKDIR /opt/airflow/project
COPY pyproject.toml .
COPY uv.lock .
RUN uv sync --frozen
COPY . .
ENV PATH="/opt/airflow/project/.venv/bin:${PATH}"