Merge pull request #39 from ModernRelay/fix/dockerfile-ecr-public-base

Dockerfile: switch base from Docker Hub to ECR Public
This commit is contained in:
Andrew Altshuler 2026-04-20 13:47:01 +03:00 committed by GitHub
commit b96fb8abe0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,7 @@
FROM debian:bookworm-slim
# Pulled from ECR Public (the Debian team mirrors official images there)
# instead of Docker Hub to avoid anonymous-pull rate limits from AWS
# CodeBuild, which shares an outbound IP pool with many other accounts.
FROM public.ecr.aws/debian/debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl \