From eddeb863f015f70ee5fc651e13b1569f9ca5d327 Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Thu, 1 Dec 2022 23:06:42 +0100 Subject: [PATCH] build: bump alpine from 3.15.4 to 3.16.3 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 017e899c..1d1361a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN go mod download # Build the docker-gen executable RUN GOOS=linux CGO_ENABLED=0 go build -ldflags "-X main.buildVersion=${DOCKER_GEN_VERSION}" -o docker-gen ./cmd/docker-gen -FROM alpine:3.15.4 +FROM alpine:3.16.3 ARG DOCKER_GEN_VERSION ENV DOCKER_GEN_VERSION=${DOCKER_GEN_VERSION} \