From a54aba8c68f66e6838159a1ea535502a6a8c6866 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 05:15:50 +0000 Subject: [PATCH] Bump ubuntu from 24.04 to 26.04 Bumps ubuntu from 24.04 to 26.04. --- updated-dependencies: - dependency-name: ubuntu dependency-version: '26.04' 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 47bb72c..affd9b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM qdrant/qdrant:v1.17.1 AS qdrant-bin ############################ builder ############################ # Compiles llama-cpp-python (needs build-essential + cmake) into a venv. None # of the toolchain reaches the runtime image. -FROM ubuntu:24.04 AS builder +FROM ubuntu:26.04 AS builder ENV DEBIAN_FRONTEND=noninteractive PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1 SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN apt-get update && apt-get install -y --no-install-recommends \ @@ -29,7 +29,7 @@ RUN pip wheel --no-deps -w /wheels . ############################ runtime ############################ # MUST stay on the same base tag as the builder: the venv's interpreter path # and ABI have to match. Dependabot bumps both FROM lines together — check. -FROM ubuntu:24.04 +FROM ubuntu:26.04 ARG S6_OVERLAY_VERSION=3.2.0.0 ARG TARGETARCH