From 148663ca573ffec0a94be266da83470521325486 Mon Sep 17 00:00:00 2001 From: Hasibur Rahman Mohammed Date: Thu, 29 May 2025 10:28:43 +0530 Subject: [PATCH] Pull ubuntu-22.04 from AWS ECR instead of Docker hub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Migrate Base Image pull from DockerHub to AWS ECR This commit updates the base image source from DockerHub to AWS ECR due to rate limit restrictions encountered with unauthenticated pulls. The issue could be caused by exceeding DockerHub’s pull rate limits, resulting in failed resolutions for ubuntu:22.04. To mitigate this, the image can be pulled from AWS Elastic Container Registry (ECR), ensuring improved reliability and uninterrupted access. This change enhances workflow stability and prevents future rate-limit errors. Signed-off-by: Hasibur Rahman Mohammed --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 715fee0..49916f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM public.ecr.aws/lts/ubuntu:22.04 ENV DEBIAN_FRONTEND=noninteractive ARG USER