Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ============================================================================
# GraphMind API � Multi-stage Docker build
# ============================================================================
FROM python:3.11-slim AS builder
FROM python:3.14-slim AS builder

WORKDIR /build

Expand All @@ -19,7 +19,7 @@ COPY src/ src/
RUN uv pip install --no-cache --system --prefix=/install .

# ---------------------------------------------------------------------------
FROM python:3.11-slim AS runtime
FROM python:3.14-slim AS runtime

# Non-root user
RUN groupadd -r graphmind && useradd -r -g graphmind -d /app graphmind
Expand Down
Loading