Files
mongo/bazel/remote_execution_container/ubuntu22/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

11 lines
242 B
Plaintext

# Image used by bazel remote execution hosts.
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y build-essential
RUN apt-get install -y libxml2-dev
RUN apt-get install -y libffi8
RUN apt-get install -y libffi-dev
CMD ["/bin/bash"]