From 6825cefb69f3f74c3a8843a72aa3b9b9d549405c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 04:12:17 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.21.0 --- roles/dagger/files/image/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/dagger/files/image/Dockerfile b/roles/dagger/files/image/Dockerfile index 47395b20..8242a042 100644 --- a/roles/dagger/files/image/Dockerfile +++ b/roles/dagger/files/image/Dockerfile @@ -1,11 +1,11 @@ -FROM alpine:3.18.4@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978 as builder +FROM alpine:3.21.0@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45 as builder # renovate: datasource=github-releases depName=dagger lookupName=dagger/dagger versioning=npm ARG DAGGER_RELEASE_VERSION=v0.5.1 WORKDIR /usr/local RUN apk add --no-cache curl bash # ${DAGGER_RELEASE_VERSION:1} drops v from the version RUN bash -c "export DAGGER_VERSION=${DAGGER_RELEASE_VERSION:1} && curl -L https://dl.dagger.io/dagger/install.sh | sh" -FROM alpine:3.18.4@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978 +FROM alpine:3.21.0@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45 COPY --from=builder /usr/local/bin/dagger /usr/local/bin/dagger COPY verify_version.sh . ENTRYPOINT [ "/usr/local/bin/dagger" ]