From 40698e962bb1daab159a1634af7669c3d519d391 Mon Sep 17 00:00:00 2001 From: Ryan Cragun Date: Mon, 5 Aug 2024 12:09:19 -0600 Subject: [PATCH] docker: use alpine 3 and UBI 8 tags instead of minor version pins (#27971) Signed-off-by: Ryan Cragun --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8c2a57232..ba49d22b31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # SPDX-License-Identifier: BUSL-1.1 ## DOCKERHUB DOCKERFILE ## -FROM alpine:3.18 as default +FROM alpine:3 as default ARG BIN_NAME # NAME and PRODUCT_VERSION are the name of the software in releases.hashicorp.com @@ -75,7 +75,7 @@ CMD ["server", "-dev"] ## UBI DOCKERFILE ## -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10 as ubi +FROM registry.access.redhat.com/ubi8/ubi-minimal as ubi ARG BIN_NAME # PRODUCT_VERSION is the version built dist/$TARGETOS/$TARGETARCH/$BIN_NAME,