Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Update Python version to 3.11 for Terraform Build Docker Image #7870

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ RUN yum install -y yum-utils \
&& terraform --version

# AWS Lambda Builders
RUN amazon-linux-extras enable python3.9
RUN yum clean metadata && yum -y install python3.9
RUN curl -L get-pip.io | python3.9
RUN amazon-linux-extras enable python3.11
RUN yum clean metadata && yum -y install python3.11
RUN curl -L get-pip.io | python3.11
RUN pip3 install aws-lambda-builders
RUN ln -s /usr/bin/python3.9 /usr/bin/python3
RUN ln -s /usr/bin/python3.11 /usr/bin/python3
RUN python3 --version

VOLUME /project
Expand Down
Loading