Some checks failed
CI/CD Pipeline / Run Tests (push) Has been skipped
CI/CD Pipeline / Security Scanning (push) Has been skipped
CI/CD Pipeline / Generate Documentation (push) Failing after 8m31s
CI/CD Pipeline / Lint Code (push) Failing after 8m33s
CI/CD Pipeline / Build and Push Docker Images (api) (push) Has been skipped
CI/CD Pipeline / Build and Push Docker Images (chat) (push) Has been skipped
CI/CD Pipeline / Build and Push Docker Images (frontend) (push) Has been skipped
CI/CD Pipeline / Build and Push Docker Images (worker) (push) Has been skipped
CI/CD Pipeline / Deploy to Staging (push) Has been skipped
CI/CD Pipeline / Deploy to Production (push) Has been skipped
- Add automatic ChromaDB indexing after documentation generation - Implement loop-based section generation for individual VM and container documentation - Fix Celery anti-pattern in generate_proxmox_docs task (removed blocking .get() call) - Share ChromaDB vector store volume between worker and chat services - Add documentation management UI to frontend with manual job triggering and log viewing - Fix frontend Socket.IO connection URL to point to correct chat service port - Enhance DocumentationAgent.index_documentation() with automatic cleanup of old documents - Update Proxmox template to generate individual files for each VM and container This enables the RAG system to properly respond with infrastructure-specific information from the generated documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
65 lines
1.7 KiB
Docker
65 lines
1.7 KiB
Docker
# Dockerfile for Celery Worker Service
|
|
FROM python:3.12-slim as builder
|
|
|
|
WORKDIR /build
|
|
|
|
# Install Poetry
|
|
RUN pip install --no-cache-dir poetry==1.8.0
|
|
|
|
# Copy dependency files
|
|
COPY pyproject.toml poetry.lock ./
|
|
|
|
# Export dependencies
|
|
RUN poetry config virtualenvs.create false \
|
|
&& poetry export -f requirements.txt --output requirements.txt --without-hashes
|
|
|
|
# Runtime stage
|
|
FROM python:3.12-slim
|
|
|
|
LABEL maintainer="automation-team@company.com"
|
|
LABEL description="Datacenter Documentation Background Worker"
|
|
|
|
# Install system dependencies for network automation
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
libpq-dev \
|
|
openssh-client \
|
|
snmp \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy requirements from builder
|
|
COPY --from=builder /build/requirements.txt .
|
|
|
|
# Install Python dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application code and package definition
|
|
COPY src/ /app/src/
|
|
COPY config/ /app/config/
|
|
COPY templates/ /app/templates/
|
|
COPY pyproject.toml README.md /app/
|
|
|
|
# Install poetry-core (required for install with pyproject.toml)
|
|
RUN pip install --no-cache-dir poetry-core
|
|
|
|
# Install the package
|
|
RUN pip install --no-cache-dir /app
|
|
|
|
# Set PYTHONPATH to ensure module can be imported
|
|
ENV PYTHONPATH=/app/src:$PYTHONPATH
|
|
|
|
# Create necessary directories
|
|
RUN mkdir -p /app/logs /app/output
|
|
|
|
# Create non-root user
|
|
RUN useradd -m -u 1000 appuser && \
|
|
chown -R appuser:appuser /app
|
|
|
|
USER appuser
|
|
|
|
# Run the Celery worker with specific queues
|
|
CMD ["celery", "-A", "datacenter_docs.workers.celery_app", "worker", "--loglevel=info", "--concurrency=4", "-Q", "documentation,auto_remediation,data_collection,maintenance,celery"]
|