From fb30c3f8a602c8e663f76ec7513c6a00b32070d6 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Thu, 11 May 2023 23:51:39 +0000 Subject: [PATCH] Move Docker image to AL2023 --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 36b06c668cb2..5bdf73a6e45a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM public.ecr.aws/amazonlinux/amazonlinux:2 as installer +FROM public.ecr.aws/amazonlinux/amazonlinux:2023 as installer ARG EXE_FILENAME=awscli-exe-linux-x86_64.zip COPY $EXE_FILENAME . RUN yum update -y \ @@ -11,7 +11,7 @@ RUN yum update -y \ # may be present in /usr/local/bin of the installer stage. && ./aws/install --bin-dir /aws-cli-bin/ -FROM public.ecr.aws/amazonlinux/amazonlinux:2 +FROM public.ecr.aws/amazonlinux/amazonlinux:2023 RUN yum update -y \ && yum install -y less groff \ && yum clean all