Skip to content

Commit 3af3a80

Browse files
chore: can we use the less-rate-limited public ecr from aws instead?
1 parent 294a5f7 commit 3af3a80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/build_layers.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function docker_build_zip {
6161
# between different python runtimes.
6262
temp_dir=$(mktemp -d)
6363
docker buildx build -t datadog-lambda-python-${arch}:$1 . --no-cache \
64-
--build-arg image=python:$1 \
64+
--build-arg image=public.ecr.aws/docker/library/python:$1 \
6565
--build-arg runtime=python$1 \
6666
--platform linux/${arch} \
6767
--progress=plain \

tests/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG python_version
2-
FROM python:$python_version
2+
FROM public.ecr.aws/docker/library/python:$python_version
33

44
ENV PYTHONDONTWRITEBYTECODE True
55

0 commit comments

Comments
 (0)