13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
# Image used by bazel remote execution hosts.
|
|
|
|
FROM amazonlinux:2
|
|
|
|
# glibc-devel is required for headers, libzstd is required by gcc.
|
|
RUN yum -y install \
|
|
glibc-devel \
|
|
libzstd \
|
|
openssl-devel \
|
|
systemtap-sdt-devel
|
|
|
|
CMD ["/bin/bash"]
|