From 001e4bfe0214f77cc00a76811ec71f216048c962 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 01:18:45 +0000 Subject: [PATCH] Bump the docker group with 2 updates Bumps the docker group with 2 updates: golang and alpine. Updates `golang` from 1.22.4-alpine3.20 to 1.22.5-alpine3.20 Updates `alpine` from 3.20.1 to 3.20.2 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b400dc..50bfda8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM golang:1.22.4-alpine3.20 as build +FROM golang:1.22.5-alpine3.20 as build RUN apk update && apk add git make RUN mkdir /build WORKDIR /build COPY . . RUN export CGO_ENABLED=0 && make build -FROM alpine:3.20.1 +FROM alpine:3.20.2 RUN apk add --no-cache --update bash curl jq ca-certificates tini python3 COPY --from=build /build/bin/script_exporter /bin/script_exporter EXPOSE 9469