2024-02-15 19:09:33 -08:00
|
|
|
# Image used by bazel remote execution hosts.
|
|
|
|
|
|
|
|
|
|
FROM amazonlinux:2
|
|
|
|
|
|
|
|
|
|
# glibc-devel is required for headers, libzstd is required by gcc.
|
2024-07-31 18:03:06 -07:00
|
|
|
RUN yum -y install \
|
|
|
|
|
glibc-devel \
|
|
|
|
|
libzstd \
|
|
|
|
|
openssl-devel \
|
|
|
|
|
systemtap-sdt-devel
|
2024-02-15 19:09:33 -08:00
|
|
|
|
|
|
|
|
CMD ["/bin/bash"]
|