Files
mongo/bazel/remote_execution_container/amazon_linux_2/dockerfile
Zack Winter e170b3a73a SERVER-87113 Use a distro-specific toolchains and remote execution containers in Bazel (#19443)
GitOrigin-RevId: e57947dd993d10e0fda117ef587c3041edf2a342
2024-02-29 21:22:01 +00:00

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"]