From 815e4b7ceadf2add6b9a0ecfe94640c1aac0acf0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 04:52:30 +0000 Subject: [PATCH] chore(deps): bump the docker group across 2 directories with 1 update Bumps the docker group with 1 update in the /agent directory: alpine. Bumps the docker group with 1 update in the /docker/server directory: alpine. Updates `alpine` from 3.23 to 3.24 Updates `alpine` from 3.23 to 3.24 Updates `alpine` from 3.23 to 3.24 Updates `alpine` from 3.23 to 3.24 --- updated-dependencies: - dependency-name: alpine dependency-version: '3.24' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker - dependency-name: alpine dependency-version: '3.24' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker ... Signed-off-by: dependabot[bot] --- agent/Dockerfile | 4 ++-- docker/server/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agent/Dockerfile b/agent/Dockerfile index d2f5b9a2..616fc2a5 100644 --- a/agent/Dockerfile +++ b/agent/Dockerfile @@ -14,7 +14,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \ # Stage 2: Download Vector for the target architecture # Keep this default in sync with src/lib/vector-version.ts (canonical source). -FROM alpine:3.23 AS vector +FROM alpine:3.24 AS vector ARG VECTOR_VERSION=0.54.0 ARG TARGETARCH RUN apk add --no-cache curl && \ @@ -29,7 +29,7 @@ RUN apk add --no-cache curl && \ cp "/tmp/vector-${VECTOR_ARCH}-unknown-linux-musl/bin/vector" /usr/local/bin/vector # Stage 3: Runtime -FROM alpine:3.23 +FROM alpine:3.24 RUN apk add --no-cache ca-certificates su-exec COPY --from=builder /vf-agent /usr/local/bin/vf-agent COPY --from=vector /usr/local/bin/vector /usr/local/bin/vector diff --git a/docker/server/Dockerfile b/docker/server/Dockerfile index 359de1b3..c74e10f6 100644 --- a/docker/server/Dockerfile +++ b/docker/server/Dockerfile @@ -33,7 +33,7 @@ RUN --mount=type=cache,target=/root/.local/share/pnpm/store \ # ---- Stage 2: Download Vector binary for the target arch (cached unless VECTOR_VERSION changes) ---- # Keep this default in sync with src/lib/vector-version.ts (canonical source). -FROM alpine:3.23 AS vector +FROM alpine:3.24 AS vector ARG VECTOR_VERSION=0.54.0 ARG TARGETARCH RUN apk add --no-cache curl && \