msse-ai-engineering / Dockerfile
sethmcknight
refactor: update Dockerfile and requirements for improved dependency management and build efficiency
1858e78
raw
history blame
1.16 kB
# Use an official Python runtime as a parent image
FROM python:3.10-slim AS base
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PIP_DISABLE_PIP_VERSION_CHECK=1
WORKDIR /app
# Install build essentials only if needed for wheels (kept minimal)
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY constraints.txt requirements.txt ./
RUN python -m pip install --upgrade pip setuptools wheel \
&& pip install --no-cache-dir -r requirements.txt -c constraints.txt --only-binary=:all: || \
pip install --no-cache-dir -r requirements.txt -c constraints.txt
# Application source
COPY app.py ./app.py
COPY templates ./templates
COPY static ./static
COPY src ./src
COPY data ./data
COPY scripts ./scripts
COPY run.sh ./run.sh
RUN chmod +x run.sh && chmod +x scripts/init_pgvector.py || true
EXPOSE 10000
CMD ["/app/run.sh"]
# Optional dev stage for local tooling (not used in final image)
FROM base AS dev
COPY dev-requirements.txt ./dev-requirements.txt
RUN pip install --no-cache-dir -r dev-requirements.txt -c constraints.txt || true