From 7d975f74bb19dd226a7643bd124c49566f76f1c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 13:33:31 +0000 Subject: [PATCH] Bump alpine from 3.15 to 3.18 in /images Bumps alpine from 3.15 to 3.18. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- images/Dockerfile | 2 +- images/Dockerfile-exporter | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/Dockerfile b/images/Dockerfile index 820a835..01395dd 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17 +FROM alpine:3.18 #RUN echo "http://dl-4.alpinelinux.org/alpine/latest-stable/main/" >> /etc/apk/repositories && \ RUN apk add --no-cache --update unbound bind-tools curl diff --git a/images/Dockerfile-exporter b/images/Dockerfile-exporter index 7f8e698..2dd432c 100644 --- a/images/Dockerfile-exporter +++ b/images/Dockerfile-exporter @@ -2,7 +2,7 @@ FROM golang:alpine3.15 as builder RUN go install github.com/letsencrypt/unbound_exporter@v0.4.1 RUN which unbound_exporter -FROM alpine:3.15 +FROM alpine:3.18 COPY --from=builder /go/bin/unbound_exporter /bin/unbound_exporter RUN chmod +x /bin/unbound_exporter ENTRYPOINT ["/bin/unbound_exporter"]