From 01e633ee79c03d79d60b53db2c319cc35d59f989 Mon Sep 17 00:00:00 2001 From: Michele Degges Date: Fri, 4 Feb 2022 13:56:39 -0800 Subject: [PATCH] Update docker image base to alpine:3.15 (#12276) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bda4fccb9..5f80272c9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # Official docker image that includes binaries from releases.hashicorp.com. This # downloads the release from releases.hashicorp.com and therefore requires that # the release is published before building the Docker image. -FROM docker.mirror.hashicorp.services/alpine:3.13 as official +FROM docker.mirror.hashicorp.services/alpine:3.15 as official # This is the release of Consul to pull in. ARG VERSION @@ -108,7 +108,7 @@ CMD ["agent", "-dev", "-client", "0.0.0.0"] # Production docker image that uses CI built binaries. # Remember, this image cannot be built locally. -FROM docker.mirror.hashicorp.services/alpine:3.13 as default +FROM docker.mirror.hashicorp.services/alpine:3.15 as default ARG VERSION ARG BIN_NAME