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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ARG TARGETARCH
RUN --mount=type=cache,target="/root/.cache/go-build" CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} make build

############# iptables-builder #############
FROM alpine:3.23.0 AS iptables-builder
FROM alpine:3.23.2 AS iptables-builder

RUN apk add --update bash sudo iptables ncurses-libs libmnl && \
rm -rf /var/cache/apk/*
Expand Down Expand Up @@ -101,7 +101,7 @@ COPY --from=telegraf-builder /go/telegraf/telegraf /usr/bin/telegraf
CMD [ "/usr/bin/telegraf"]

############# tune2fs-builder #############
FROM alpine:3.23.0 AS tune2fs-builder
FROM alpine:3.23.2 AS tune2fs-builder

RUN apk add --update bash e2fsprogs-extra mount gawk ncurses-libs && \
rm -rf /var/cache/apk/*
Expand Down
Loading