From dde9eafa726cedea2feae4e9aa3dbfc032da36e2 Mon Sep 17 00:00:00 2001 From: Johan Gunnarsson Date: Wed, 21 Jul 2021 22:08:37 +0200 Subject: [PATCH] Dockerfile: Change to AWS public registry AWS ECR Public has higher rate limits than Docker Hub. --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c3de0b..95bbbf9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,10 @@ -# Native amd64 -FROM debian:buster-slim +FROM public.ecr.aws/ubuntu/ubuntu:latest ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get --assume-yes \ --no-install-recommends \ install debootstrap \ debian-archive-keyring \ - ubuntu-archive-keyring \ ca-certificates \ qemu-user-static \ device-tree-compiler \