From 0fdc1acc40cc660c50cd3d18cfbfcbde9e9b0b89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 07:09:39 +0000 Subject: [PATCH] build(deps): bump the docker-all group across 1 directory with 2 updates Bumps the docker-all group with 2 updates in the / directory: golang and alpine. Updates `golang` from 1.24.5-alpine to 1.24.6-alpine Updates `alpine` from 3.22.0 to 3.22.1 --- updated-dependencies: - dependency-name: golang dependency-version: 1.24.6-alpine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-all - dependency-name: alpine dependency-version: 3.22.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-all ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff55d00..c475832 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG APPLICATION=dip \ VERSION=0.1.0-rc.1 -FROM golang:1.24.5-alpine as builder +FROM golang:1.24.6-alpine as builder ARG APPLICATION \ VERSION RUN adduser -D -g '' ${APPLICATION} @@ -12,7 +12,7 @@ RUN apk add --no-cache \ CGO_ENABLED=0 go build -ldflags "-X main.Version=${VERSION}" -buildvcs=false && \ cp ${APPLICATION} /${APPLICATION} -FROM alpine:3.22.0 +FROM alpine:3.22.1 ARG APPLICATION COPY --from=builder /etc/passwd /etc/passwd COPY --from=builder /${APPLICATION} /usr/local/bin/app