modelx / airflow /Dockerfile
nivakaran's picture
Upload folder using huggingface_hub
01d0ae1 verified
# Astro CLI Dockerfile for ModelX-Ultimate Airflow
# Includes all dependencies for ML pipeline execution
FROM quay.io/astronomer/astro-runtime:12.3.0
# Install system dependencies
USER root
RUN apt-get update && apt-get install -y \
build-essential \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
USER astro
# Copy requirements and install
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt