From 17415f04c37f4152a05b7e4a7831aefd67fd8d39 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 19 Mar 2023 12:43:10 -0400 Subject: [PATCH] Dockerfile depend on latest ubuntu-lts --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 917bee1..8107d0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:labs -FROM public.ecr.aws/ubuntu/ubuntu:focal as preinstall +FROM public.ecr.aws/lts/ubuntu:latest as preinstall RUN apt-get update && apt-get install -y curl python3-minimal FROM preinstall as base