Describe the bug
Python 3.9 is still the python version in the latest release of the docker image
Regression Issue
Expected Behavior
3.10 at least
Current Behavior
3.9 that is EOL
Reproduction Steps
FROM public.ecr.aws/aws-cli/aws-cli:2.35.11
ENTRYPOINT ["python3", "--version"]
Possible Solution
No response
Additional Information/Context
No response
CLI version used
2.35.11
Environment details (OS name and version, etc.)
ubuntu 24.04
"solution"
FROM public.ecr.aws/aws-cli/aws-cli:2.35.11
RUN dnf -y install python3.11
COPY --from=ghcr.io/astral-sh/uv:0.11.23 /uv /uvx /bin/
RUN uv pip install --no-cache --system --python 3.11 boto3
ENTRYPOINT ["python3.11", "--version"]
Describe the bug
Python 3.9 is still the python version in the latest release of the docker image
Regression Issue
Expected Behavior
3.10 at least
Current Behavior
3.9 that is EOL
Reproduction Steps
Possible Solution
No response
Additional Information/Context
No response
CLI version used
2.35.11
Environment details (OS name and version, etc.)
ubuntu 24.04
"solution"