From 5638b290af7224d58cb773f32fcde001f79708aa Mon Sep 17 00:00:00 2001 From: Florent Monbillard Date: Thu, 28 Jul 2022 11:53:30 -0400 Subject: [PATCH] Update Alpine base image to 3.16.1 3.16.1 fixes 4 high vulnerabilities present in Alpine 3.16.0 Signed-off-by: Florent Monbillard --- Dockerfile | 2 +- scripts/release/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d1dbf4..13a4850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN make build ################ -FROM alpine:3.16.0 +FROM alpine:3.16.1 COPY --from=builder /go/src/terraform-docs/bin/linux-amd64/terraform-docs /usr/local/bin/ diff --git a/scripts/release/Dockerfile b/scripts/release/Dockerfile index e6730b5..f1fdf44 100644 --- a/scripts/release/Dockerfile +++ b/scripts/release/Dockerfile @@ -6,7 +6,7 @@ # You may obtain a copy of the License at the LICENSE file in # the root directory of this source tree. -FROM alpine:3.16.0 +FROM alpine:3.16.1 COPY terraform-docs /usr/local/bin/terraform-docs