Full implementation from spec: ZNC/IRC client with TLS, Ollama LLM backend, per-user SQLite conversation memory, and Flask web admin portal with 7 pages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
232 B
Docker
14 lines
232 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY bot/ ./bot/
|
|
COPY portal/ ./portal/
|
|
|
|
RUN mkdir -p config logs data/history
|
|
|
|
CMD ["python", "-m", "bot.irc_client"]
|