From 800f2d2ff9c428f7740441558689499c22a16eb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2026 19:04:08 +0000 Subject: [PATCH] deps(docker): bump ubuntu from 24.04 to 26.04 in /deploy/docker 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] --- deploy/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/docker/Dockerfile b/deploy/docker/Dockerfile index 539e7a3..6f2c8ca 100644 --- a/deploy/docker/Dockerfile +++ b/deploy/docker/Dockerfile @@ -9,7 +9,7 @@ # Build from the repository root so the context contains src/: # docker build -f deploy/docker/Dockerfile -t retrigger . -FROM ubuntu:24.04 AS builder +FROM ubuntu:26.04 AS builder RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ @@ -32,7 +32,7 @@ ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse RUN cargo build --release --bin retrigger \ && ./target/release/retrigger --version -FROM ubuntu:24.04 AS runtime +FROM ubuntu:26.04 AS runtime LABEL maintainer="Retrigger Team" LABEL description="Ultra-fast file system watcher with native performance"