Rebrand and personalize the bot as 'Bartender' - a companion for those who love deeply and feel intensely. Major changes: - Rename package: daemon_boyfriend -> loyal_companion - New default personality: Bartender - wise, steady, non-judgmental - Grief-aware system prompt (no toxic positivity, attachment-informed) - New relationship levels: New Face -> Close Friend progression - Bartender-style mood modifiers (steady presence) - New fact types: attachment_pattern, grief_context, coping_mechanism - Lower mood decay (0.05) for emotional stability - Higher fact extraction rate (0.4) - Bartender pays attention Updated all imports, configs, Docker files, and documentation.
39 lines
840 B
Docker
39 lines
840 B
Docker
# Stage 1: Build dependencies
|
|
FROM python:3.11-slim as builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install build dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip wheel --no-cache-dir --no-deps --wheel-dir /app/wheels -r requirements.txt
|
|
|
|
# Stage 2: Runtime
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Create non-root user for security
|
|
RUN useradd --create-home --shell /bin/bash botuser
|
|
|
|
# Copy wheels from builder and install
|
|
COPY --from=builder /app/wheels /wheels
|
|
RUN pip install --no-cache /wheels/* && rm -rf /wheels
|
|
|
|
# Copy application code
|
|
COPY src/ ./src/
|
|
|
|
# Set Python path
|
|
ENV PYTHONPATH=/app/src
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
# Switch to non-root user
|
|
USER botuser
|
|
|
|
# Run the bot
|
|
CMD ["python", "-m", "loyal_companion"]
|