From 04535a77765d37b12cff709e7d2518b76fdc9f85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:51:24 +0000 Subject: [PATCH] Bump python from 3.11-slim to 3.14-slim Bumps python from 3.11-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32e7336..0add450 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder WORKDIR /build COPY pyproject.toml README.md ./ COPY src ./src RUN pip wheel --no-cache-dir --wheel-dir /wheels . -FROM python:3.11-slim +FROM python:3.14-slim RUN useradd --create-home --uid 10001 inferstack COPY --from=builder /wheels /wheels RUN pip install --no-cache-dir /wheels/* && rm -rf /wheels