From 607d197b02006c4981e1135785d18eb89fccf655 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Jun 2025 08:51:11 +0000 Subject: [PATCH] Bump the minor-updates group with 2 updates Bumps the minor-updates group with 2 updates: golang and alpine. Updates `golang` from 1.23.1-alpine to 1.24.3-alpine Updates `alpine` from 3.19 to 3.22 --- updated-dependencies: - dependency-name: golang dependency-version: 1.24.3-alpine dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: alpine dependency-version: '3.22' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 504cd8c..00e8e2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.1-alpine AS builder +FROM golang:1.24.3-alpine AS builder # Set the working directory inside the container WORKDIR /app @@ -15,7 +15,7 @@ COPY . . # Build the application RUN CGO_ENABLED=0 GOOS=linux go build -o /newt -FROM alpine:3.19 AS runner +FROM alpine:3.22 AS runner RUN apk --no-cache add ca-certificates