From afe582c82db8ced15defe6991982c2f35ad6dcc0 Mon Sep 17 00:00:00 2001 From: dani <29378233+kheina@users.noreply.github.com> Date: Wed, 24 Jul 2024 16:03:50 -0400 Subject: [PATCH] bump alpine image version to 3.20 (#4968) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6d2e28b516..8982af4802 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # Development docker image -FROM docker.mirror.hashicorp.services/alpine:3.18 as dev +FROM docker.mirror.hashicorp.services/alpine:3.20 as dev RUN set -eux && \ addgroup boundary && \ @@ -37,7 +37,7 @@ CMD ["server", "-config", "/boundary/config.hcl"] # Official docker image that uses binaries from releases.hashicorp.com -FROM docker.mirror.hashicorp.services/alpine:3.18 as official +FROM docker.mirror.hashicorp.services/alpine:3.20 as official ARG PRODUCT_VERSION @@ -87,7 +87,7 @@ CMD ["server", "-config", "/boundary/config.hcl"] # Production docker image # Remember, this cannot be built locally -FROM docker.mirror.hashicorp.services/alpine:3.18 as default +FROM docker.mirror.hashicorp.services/alpine:3.20 as default ARG BIN_NAME # NAME and PRODUCT_VERSION are the name of the software in releases.hashicorp.com