From 4a33759b922838cd2bcfe6dbd6a5b3fa310cc208 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 17:11:59 +0000 Subject: [PATCH] build(deps): bump golang from 1.22-alpine to 1.23-alpine Bumps golang from 1.22-alpine to 1.23-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3779ec8..ea396f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # https://docs.docker.com/buildx/working-with-buildx/ # TARGETPLATFORM if not empty OR linux/amd64 by default -FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.22-alpine as builder +FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.23-alpine as builder # app version and build date must be passed during image building (version without any prefix). # e.g.: `docker build --build-arg "APP_VERSION=1.2.3" --build-arg "BUILD_TIME=$(date +%FT%T%z)" .` @@ -22,7 +22,7 @@ RUN go mod tidy RUN CGO_ENABLED=0 go build -trimpath -ldflags "$LDFLAGS" -o ./velox ./cmd/vx -FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.22-alpine +FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.23-alpine # use same build arguments for image labels ARG APP_VERSION="undefined"