Skip to content

Commit 061a992

Browse files
Update python Docker tag to v3.14
1 parent 97b7e24 commit 061a992

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13
1+
3.14

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Multi-stage build for model-context-shell
22
# Stage 1: Builder - install dependencies
3-
FROM python:3.13-slim AS builder
3+
FROM python:3.14-slim AS builder
44

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

5151
# Stage 2: Runtime - minimal image
52-
FROM python:3.13-slim AS runner
52+
FROM python:3.14-slim AS runner
5353

5454
# Create non-root user (same as builder)
5555
RUN groupadd --gid 1000 app && \

0 commit comments

Comments
 (0)