9 lines
192 B
Plaintext
9 lines
192 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
|
|
|
|
CMD ["/bin/bash"]
|