From 3fc56ff7b537e036dfcb8528eeeb55e1f531ad0b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 19:06:09 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.20 --- curl-jq/Dockerfile | 2 +- exiftool/Dockerfile | 2 +- oauth2-proxy/Dockerfile | 2 +- restic-robot/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/curl-jq/Dockerfile b/curl-jq/Dockerfile index 18aea95..a66dacf 100644 --- a/curl-jq/Dockerfile +++ b/curl-jq/Dockerfile @@ -1,3 +1,3 @@ -FROM alpine:3.16 +FROM alpine:3.20 RUN apk add --no-cache ca-certificates tzdata curl bash jq diff --git a/exiftool/Dockerfile b/exiftool/Dockerfile index 6d4522d..f9e4cfd 100644 --- a/exiftool/Dockerfile +++ b/exiftool/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.16 +FROM alpine:3.20 COPY VERSION /tmp/VERSION diff --git a/oauth2-proxy/Dockerfile b/oauth2-proxy/Dockerfile index eb2a534..e3439c0 100644 --- a/oauth2-proxy/Dockerfile +++ b/oauth2-proxy/Dockerfile @@ -22,7 +22,7 @@ RUN GO111MODULE=on go mod download RUN VERSION=$(cat /tmp/VERSION) make build && touch jwt_signing_key.pem # Copy binary to alpine -FROM alpine:3.16 +FROM alpine:3.20 COPY --from=builder /etc/nsswitch.conf /etc/nsswitch.conf COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/oauth2-proxy /bin/oauth2-proxy diff --git a/restic-robot/Dockerfile b/restic-robot/Dockerfile index 57ebec7..a58fc24 100644 --- a/restic-robot/Dockerfile +++ b/restic-robot/Dockerfile @@ -6,7 +6,7 @@ RUN git clone https://github.com/Southclaws/restic-robot.git . RUN CGO_ENABLED=0 GOOS=linux go build -FROM alpine:3.16 +FROM alpine:3.20 RUN apk add --no-cache ca-certificates tzdata restic mysql-client COPY --from=builder /go/src/github.com/southclaws/restic-robot/restic-robot /usr/bin/restic-robot ENTRYPOINT ["/usr/bin/restic-robot"]