91e75e620b
CI: cua-driver distro-compat matrix / Resolve release version (push) Waiting to run
CI: cua-driver distro-compat matrix / debian:12 (glibc 2.36) (push) Blocked by required conditions
CI: cua-driver distro-compat matrix / fedora:41 (glibc 2.40) (push) Blocked by required conditions
CI: cua-driver distro-compat matrix / rockylinux:9 (glibc 2.34) (push) Blocked by required conditions
CI: cua-driver distro-compat matrix / ubuntu:22.04 (glibc 2.35) (push) Blocked by required conditions
CI: cua-driver distro-compat matrix / ubuntu:24.04 (glibc 2.39) (push) Blocked by required conditions
CI: cua-driver distro-compat matrix / Distro compat summary (push) Blocked by required conditions
CI: Nix Linux Rust source / Nix / compositor build (push) Waiting to run
CI: Nix Linux Rust source / Nix / driver package (push) Waiting to run
CI: Nix Linux Rust source / Nix / Rust unit tests (push) Waiting to run
CI: Rust Linux unit / Rust Linux unit and compile (push) Waiting to run
CI: Rust Windows unit / Rust Windows unit and compile (push) Waiting to run
CI: SPDX Headers / Check SPDX headers (warn-only) (push) Waiting to run
CD: Docs MCP Server / build (linux/amd64) (push) Waiting to run
CD: Docs MCP Server / build (linux/arm64) (push) Waiting to run
CD: Docs MCP Server / merge (push) Blocked by required conditions
66 lines
1.5 KiB
Docker
66 lines
1.5 KiB
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.12-slim AS builder
|
|
|
|
# Install uv
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy project files
|
|
COPY pyproject.toml ./
|
|
|
|
# Create virtual environment and install dependencies
|
|
RUN uv venv /app/.venv
|
|
ENV VIRTUAL_ENV=/app/.venv
|
|
ENV PATH="/app/.venv/bin:$PATH"
|
|
|
|
# Install dependencies (without the project itself for better caching)
|
|
RUN uv pip install --no-cache -r pyproject.toml
|
|
|
|
# Copy application code
|
|
COPY main.py ./
|
|
|
|
# Production image
|
|
FROM python:3.12-slim AS runtime
|
|
|
|
# Create non-root user for security
|
|
RUN useradd --create-home --shell /bin/bash appuser
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy virtual environment from builder
|
|
COPY --from=builder /app/.venv /app/.venv
|
|
COPY --from=builder /app/main.py /app/main.py
|
|
|
|
# Set environment variables
|
|
ENV VIRTUAL_ENV=/app/.venv
|
|
ENV PATH="/app/.venv/bin:$PATH"
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV PORT=8000
|
|
ENV HOST=0.0.0.0
|
|
|
|
# Database paths (mount volumes to these paths)
|
|
ENV DOCS_DB_PATH=/data/docs_db
|
|
ENV CODE_DB_PATH=/data/code_db
|
|
|
|
# OpenTelemetry configuration
|
|
ENV OTEL_ENDPOINT=https://otel.cua.ai
|
|
ENV OTEL_SERVICE_NAME=cua-docs-mcp
|
|
|
|
# Create data directory
|
|
RUN mkdir -p /data && chown appuser:appuser /data
|
|
|
|
# Switch to non-root user
|
|
USER appuser
|
|
|
|
# Expose port
|
|
EXPOSE 8000
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')" || exit 1
|
|
|
|
# Run the server
|
|
CMD ["python", "main.py"]
|