Skip to content

Docker Images

UNIQUALSF-SNOWFLAKE_DATA_QUALITY
## Dockerfile
FROM python:3.11-slim

# Install build dependencies
RUN apt-get update && apt-get install -y \
    build-essential \
    && rm -rf /var/lib/apt/lists/*

# Set working directory
WORKDIR /app

# Copy requirements file
COPY requirements.txt .

# Install Python packages
RUN pip install --no-cache-dir -r requirements.txt

# Command to run when container starts
CMD ["python"]

Docker image build

docker build -t imagename:latest .