Skip to content

Install python modules in AL2023 bootstrap #485

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

Merged
merged 1 commit into from
Jul 22, 2025
Merged
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
5 changes: 3 additions & 2 deletions swift-ci/main/amazon-linux/2023/Bootstrap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ RUN yum -y install \
python3-devel \
python3-distro \
python3-setuptools \
python3-pip \
rsync \
sqlite-devel \
swig \
Expand All @@ -37,8 +38,8 @@ RUN yum -y install \
RUN curl -fsSL "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-linux-`uname -m`.tar.gz" \
| tar --strip-components=1 -xz -C /usr/local


# TODO: Still need to install bits for lldb
COPY swift-ci/dependencies/requirements.txt /dependencies/
RUN pip3 install -r /dependencies/requirements.txt

USER build-user
WORKDIR /home/build-user