We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 294a5f7 commit 3af3a80Copy full SHA for 3af3a80
scripts/build_layers.sh
@@ -61,7 +61,7 @@ function docker_build_zip {
61
# between different python runtimes.
62
temp_dir=$(mktemp -d)
63
docker buildx build -t datadog-lambda-python-${arch}:$1 . --no-cache \
64
- --build-arg image=python:$1 \
+ --build-arg image=public.ecr.aws/docker/library/python:$1 \
65
--build-arg runtime=python$1 \
66
--platform linux/${arch} \
67
--progress=plain \
tests/Dockerfile
@@ -1,5 +1,5 @@
1
ARG python_version
2
-FROM python:$python_version
+FROM public.ecr.aws/docker/library/python:$python_version
3
4
ENV PYTHONDONTWRITEBYTECODE True
5
0 commit comments