Skip to content
Open
Show file tree
Hide file tree
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 agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
Loading