Files
mongo/bazel/remote_execution_container/amazon_linux_2/dockerfile
Sean Lyons 9df88f7ab6 SERVER-111078 Add procps-ng to Red Hat family of remote execution containers (#41512)
GitOrigin-RevId: 1a6a02478d218b9cf610adc43204eacccc1a5c5a
2025-09-18 14:41:58 +00:00

32 lines
1.0 KiB
Plaintext

# DO NOT EDIT.
#
# This Dockerfile is generated by the 'repin_dockerfiles.sh' script. To repin
# versions or change packages, edit that script instead.
#
# To repin the hashes:
#
# bazel run \
# //bazel/remote_execution_container:repin_dockerfiles \
# --config=local
#
# To update the docker images, follow the instructions in the
# confluence page: go/devprod-build-update-rbe-containers.
FROM amazonlinux:2@sha256:fd92a6cabde62035fb2ecf8a8904e0a54de7898d2c63cf8b4ee37a0c8fff7ecb
RUN yum check-update || true && \
yum install -y \
cyrus-sasl-devel-2.1.26-24.amzn2.0.1 \
cyrus-sasl-gssapi-2.1.26-24.amzn2.0.1 \
glibc-devel-2.26-64.amzn2.0.4 \
krb5-devel-1.15.1-55.amzn2.2.9 \
libcurl-devel-8.3.0-1.amzn2.0.9 \
libzstd-1.5.5-1.amzn2.0.1 \
openldap-devel-2.4.44-25.amzn2.0.7 \
openssl-devel-1.0.2k-24.amzn2.0.15 \
procps-ng-3.3.10-26.amzn2 \
systemtap-sdt-devel-4.5-1.amzn2.0.2 \
&& yum clean all && rm -rf /var/cache/yum/*
CMD ["/bin/bash"]