From 400305c2ffbe708720acc5b5ea8ed35ac547f1da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 16:11:05 +0800 Subject: [PATCH] build(deps): Bump alpine in /cmd/fluent-watcher/fluentd (#1014) Bumps alpine from 3.17 to 3.19. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- cmd/fluent-watcher/fluentd/Dockerfile.amd64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/fluent-watcher/fluentd/Dockerfile.amd64 b/cmd/fluent-watcher/fluentd/Dockerfile.amd64 index 79643e63c..0aebe76e1 100644 --- a/cmd/fluent-watcher/fluentd/Dockerfile.amd64 +++ b/cmd/fluent-watcher/fluentd/Dockerfile.amd64 @@ -8,7 +8,7 @@ RUN echo $(ls -al /code) RUN CGO_ENABLED=0 go build -ldflags '-w -s' -o /fluentd/fluentd-watcher /code/cmd/fluent-watcher/fluentd/main.go # Fluentd main image -FROM alpine:3.17 +FROM alpine:3.19 LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.15.3" # Do not split this into multiple RUN!