Files
llm-automation-docs-and-rem…/deploy/docker/Dockerfile.api
dnviti 4a8372f0d1
Some checks failed
Build / Code Quality Checks (push) Successful in 9m31s
Build / Build & Push Docker Images (chat) (push) Failing after 45s
Build / Build & Push Docker Images (frontend) (push) Successful in 1m3s
Build / Build & Push Docker Images (api) (push) Waiting to run
Build / Build & Push Docker Images (worker) (push) Failing after 15m16s
fix: upgrade Poetry to 2.2.1 for poetry.lock compatibility
Resolve Docker build failure caused by poetry.lock incompatibility:

**Root Cause:**
- Local Poetry version: 2.2.1
- Dockerfile Poetry version: 1.8.0
- poetry.lock generated with 2.2.1 not compatible with 1.8.0
- Build failed: "Dependency walk failed at triton (==3.5.0)"

**Solution:**
- Upgrade Poetry to 2.2.1 in all Dockerfiles (api, chat, worker)
- Update CI/CD pipeline to match (POETRY_VERSION: 2.2.1)
- Successfully tested Docker build with new version

**Files Modified:**
- deploy/docker/Dockerfile.api
- deploy/docker/Dockerfile.chat
- deploy/docker/Dockerfile.worker
- .gitea/workflows/build.yml

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 15:55:15 +02:00

71 lines
1.7 KiB
Docker

# Dockerfile for FastAPI API Service
FROM python:3.12-slim AS builder
WORKDIR /build
# Install Poetry and export plugin
RUN pip install --no-cache-dir poetry==2.2.1 poetry-plugin-export
# 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 API Server"
# Install system dependencies
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 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
# 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
# Expose API port
EXPOSE 8000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8000/health || exit 1
# Run the API server
CMD ["python", "-m", "uvicorn", "datacenter_docs.api.main:app", "--host", "0.0.0.0", "--port", "8000"]