Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Multi-stage build for model-context-shell
# Stage 1: Builder - install dependencies
FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder

# Create non-root user
RUN groupadd --gid 1000 app && \
Expand Down Expand Up @@ -49,7 +49,7 @@ RUN --mount=type=cache,target=/home/app/.cache/uv,uid=1000,gid=1000 \
COPY --chown=app:app *.py ./

# Stage 2: Runtime - minimal image
FROM python:3.13-slim AS runner
FROM python:3.14-slim AS runner

# Create non-root user (same as builder)
RUN groupadd --gid 1000 app && \
Expand Down
Loading