Bump base image to debian trixie (#935)

CIoses #929
This commit is contained in:
Aram Akhavan
2026-02-21 19:55:21 -08:00
committed by GitHub
parent c365988a52
commit d433a6a54e
4 changed files with 48 additions and 6 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
########
FROM golang:1.25-bookworm as backendbuild
FROM golang:1.25-trixie as backendbuild
WORKDIR /go/src/github.com/analogj/scrutiny
@@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y file && rm -rf /var/lib/apt/lists/*
RUN make binary-clean binary-collector
########
FROM debian:bookworm-slim as runtime
FROM debian:trixie-slim as runtime
WORKDIR /opt/scrutiny
ENV PATH="/opt/scrutiny/bin:${PATH}"