Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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"

Expand Down
Loading