Files
mongo/bazel/remote_execution_container/amazon_linux_2/dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
192 B
Plaintext
Raw Normal View History

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