diff --git a/Dockerfile b/Dockerfile index 3fdab1f..f4e31fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM python:3.13-slim as builder +FROM python:3.14-slim as builder WORKDIR /app @@ -19,7 +19,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Runtime stage -FROM python:3.13-slim +FROM python:3.14-slim WORKDIR /app