Files
mongo/bazel/remote_execution_container/amazon_linux_2023/dockerfile
Zack Winter 1844ed4dbf SERVER-91561 Add mongo/config.h post-execution validator (#25322)
GitOrigin-RevId: 0250e8279b3e0df3ca2c962b69a9f92646c07429
2024-08-01 02:00:14 +00:00

12 lines
227 B
Plaintext

# Image used by bazel remote execution hosts.
FROM amazonlinux:2023
# glibc-devel is required for headers, libzstd is required by gcc.
RUN yum -y install \
glibc-devel \
libzstd \
openssl-devel
CMD ["/bin/bash"]