Skip to content
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
44 changes: 44 additions & 0 deletions swift-ci/main/amazon-linux/2023/Bootstrap/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
FROM amazonlinux:2023

RUN yum install shadow-utils -y

RUN groupadd -g 998 build-user && \
useradd -m -r -u 42 -g build-user build-user

RUN yum -y group install "development tools"
RUN yum -y install \
ninja-build \
curl-devel \
gcc-c++ \
clang \
git \
libbsd-devel \
libedit-devel \
libicu-devel \
libuuid-devel \
libxml2-devel \
ncurses-devel \
pkgconfig \
procps-ng \
python3 \
python3-devel \
python3-distro \
python3-setuptools \
rsync \
sqlite-devel \
swig \
tzdata \
unzip \
zip \
lld \
diffutils \
which

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

USER build-user
WORKDIR /home/build-user