From 011e150a714a32a1e3b4234284a6c2b7546fb670 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 01:20:00 +0000 Subject: [PATCH] Bump golang from 1.21.1-alpine to 1.21.3-alpine Bumps golang from 1.21.1-alpine to 1.21.3-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- Dockerfile.debian | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e8515c5..4eae381 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG GIT_COMMIT=unknown -FROM golang:1.21.1-alpine as builder +FROM golang:1.21.3-alpine as builder ARG GIT_COMMIT RUN apk add --no-cache git WORKDIR /siderite diff --git a/Dockerfile.debian b/Dockerfile.debian index f4504c8..0447643 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -1,5 +1,5 @@ ARG GIT_COMMIT=unknown -FROM golang:1.21.1-bullseye as builder +FROM golang:1.21.3-bullseye as builder ARG GIT_COMMIT WORKDIR /siderite COPY go.mod . @@ -12,7 +12,7 @@ RUN go mod download COPY . . RUN GIT_COMMIT=$GIT_COMMIT go build -ldflags "-X github.com/philips-labs/siderite/cmd.GitCommit=${GIT_COMMIT}" -FROM golang:1.21.1-bullseye +FROM golang:1.21.3-bullseye WORKDIR /app COPY --from=builder /siderite/siderite /app ENTRYPOINT ["/app/siderite","runner"]