Address the security-auditor findings the user selected (items 2, 3, 4): Default admin credentials (P2): remove the fixed `Ten31` default. First boot now generates a strong random admin password (secrets.token_urlsafe), records it 0600 at /data/.admin-password, and surfaces it once via a new "Show Initial Admin Password" StartOS action (CLI `show-admin-password`). The stored password is cleared when the admin is reset (CLI reset-password) or self-changes it (change-password endpoint). Login hardening (P2): add a per-IP in-memory sliding-window rate limiter (10 failures / 5 min -> 429 + Retry-After) in ratelimit.py; run a dummy argon2 verify when the user is unknown so timing can't enumerate usernames; keep a single generic 401 for unknown-user and wrong-password. Hardening (P3): server process now runs unprivileged -- Dockerfile adds uid 10001 appuser; start.sh (still root) chowns the mounted /data then drops via `setpriv` before exec'ing uvicorn. Spreadsheet imports are size-capped via storage.read_capped (413 past MAX_UPLOAD_SIZE) in the schedule, capital preview, and batch paths. batch_import no longer returns raw exception text (generic per-file messages). Verified in the packed amd64 container: PID1 uvicorn runs as uid 10001, /data owned 10001 with 0600 secrets; generated admin password retrievable via CLI and logs in (200); 11th bad login -> 429; admin reset clears the stored password. Tests: test_auth_hardening.py (4). Full suite 21 passed; frontend tsc + StartOS bundle clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
49 lines
1.4 KiB
Docker
49 lines
1.4 KiB
Docker
# Build context is the repo root (docker build -f deploy/Dockerfile .)
|
|
|
|
# --- Frontend build stage ---
|
|
# Build on the native builder arch ($BUILDPLATFORM) so the JS bundler runs without
|
|
# cross-arch emulation. The output is static assets (HTML/CSS/JS), which are
|
|
# architecture-independent and copied into the target-arch runtime stage below.
|
|
FROM --platform=$BUILDPLATFORM node:20-slim AS frontend-build
|
|
|
|
WORKDIR /build
|
|
COPY frontend/package.json frontend/package-lock.json ./
|
|
RUN npm ci --include=dev
|
|
COPY frontend/ ./
|
|
RUN npx vite build
|
|
|
|
# --- Backend + runtime stage ---
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install Python deps
|
|
COPY backend/pyproject.toml ./
|
|
COPY backend/ten31portal/ ./ten31portal/
|
|
COPY backend/alembic/ ./alembic/
|
|
COPY backend/alembic.ini ./
|
|
RUN pip install --no-cache-dir .
|
|
|
|
# Copy built frontend
|
|
COPY --from=frontend-build /build/dist ./static/
|
|
|
|
# Startup script
|
|
COPY deploy/start.sh ./start.sh
|
|
RUN chmod +x ./start.sh
|
|
|
|
# Data volume mount point
|
|
RUN mkdir -p /data
|
|
|
|
# Unprivileged account for the server process. The container still starts as root (see start.sh)
|
|
# so it can chown the platform-mounted /data volume, then drops to this uid via setpriv.
|
|
RUN groupadd --gid 10001 appuser \
|
|
&& useradd --uid 10001 --gid 10001 --no-create-home --shell /usr/sbin/nologin appuser
|
|
|
|
ENV TEN31_DB_PATH=/data/portal.db
|
|
ENV TEN31_DOCS_DIR=/data/documents
|
|
ENV TEN31_SESSION_SECRET=change-me
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["./start.sh"]
|