feat: enhance chat service with documentation indexing and improved Docker configuration
Some checks failed
CI/CD Pipeline / Generate Documentation (push) Failing after 7m41s
CI/CD Pipeline / Lint Code (push) Failing after 7m44s
CI/CD Pipeline / Run Tests (push) Has been skipped
CI/CD Pipeline / Security Scanning (push) Has been skipped
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

This commit is contained in:
2025-10-20 19:15:32 +02:00
parent 6f5deb0879
commit 27dd9e00b6
14 changed files with 784 additions and 94 deletions

View File

@@ -35,6 +35,8 @@ RUN pip install --no-cache-dir -r requirements.txt
# Copy application code and package definition
COPY src/ /app/src/
COPY config/ /app/config/
COPY scripts/ /app/scripts/
COPY output/ /app/output/
COPY pyproject.toml README.md /app/
# Install poetry-core (required for install with pyproject.toml)
@@ -47,11 +49,13 @@ RUN pip install --no-cache-dir /app
ENV PYTHONPATH=/app/src:$PYTHONPATH
# Create necessary directories
RUN mkdir -p /app/logs
RUN mkdir -p /app/logs /app/data /app/output /app/scripts
# Create non-root user
# Create non-root user and set permissions
RUN useradd -m -u 1000 appuser && \
chown -R appuser:appuser /app
chown -R appuser:appuser /app && \
chmod +x /app/scripts/*.sh 2>/dev/null || true && \
chmod +x /app/scripts/*.py 2>/dev/null || true
USER appuser