From 6935080e0852881486de96a927623b1cea62eda1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 16:40:25 -0700 Subject: [PATCH] fix(deps): update Dockerfiles from alpine:3.19.1 to alpine:3.20.0 (#386) --- Dockerfile | 4 ++-- Dockerfile.goreleaser | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c2a467a..ce9fce8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # This is a standalone Dockerfile that does not depend on goreleaser building the binary # It is NOT the version that is pushed to dockerhub -FROM golang:1.22.4-alpine3.19 as builder +FROM golang:1.22.4-alpine3.20 as builder # See "Runtime platform versions" in CONTRIBUTING.md RUN apk --no-cache add \ @@ -23,7 +23,7 @@ ENV GOPATH=/go RUN go build -a -o ldr . -FROM alpine:3.19.1 +FROM alpine:3.20.0 RUN addgroup -g 1000 -S ldr-user && \ adduser -u 1000 -S ldr-user -G ldr-user && \ diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index 73bf1e6e..15507a81 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,6 +1,6 @@ # This is the Dockerfile used for release (published to dockerhub by goreleaser) -FROM alpine:3.19.1 +FROM alpine:3.20.0 # See "Runtime platform versions" in CONTRIBUTING.md RUN apk add --no-cache \