docs: add mkdocs, update links, add architecture documentation
This commit is contained in:
26
docs/Dockerfile
Normal file
26
docs/Dockerfile
Normal file
@@ -0,0 +1,26 @@
|
||||
# Dockerfile for MkDocs documentation
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /docs
|
||||
|
||||
# Install system dependencies
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
git \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Copy requirements first for better caching
|
||||
COPY requirements.txt .
|
||||
|
||||
# Install Python dependencies
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy all documentation files
|
||||
COPY . .
|
||||
|
||||
# Expose MkDocs default port
|
||||
EXPOSE 8000
|
||||
|
||||
# Default command: serve documentation
|
||||
CMD ["mkdocs", "serve", "--dev-addr=0.0.0.0:8000"]
|
||||
|
||||
Reference in New Issue
Block a user