mongo/bazel/remote_execution_container/ubuntu22/dockerfile
Sean Lyons f81d6cee62 SERVER-122806: Add dependencies for tests to remote execution containers (#50550)
GitOrigin-RevId: 0c6bd6517ec60c956bf81d2754e3cc58d649c177
2026-03-26 19:38:18 +00:00

35 lines
1.1 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 ubuntu:22.04@sha256:ce4a593b4e323dcc3dd728e397e0a866a1bf516a1b7c31d6aa06991baec4f2e0
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential=12.9ubuntu3 \
hostname=3.23ubuntu2 \
iproute2=5.15.0-1ubuntu2 \
libcurl4-openssl-dev=7.81.0-1ubuntu1.23 \
libgssapi-krb5-2=1.19.2-2ubuntu0.7 \
libkrb5-dev=1.19.2-2ubuntu0.7 \
libldap2-dev=2.5.20+dfsg-0ubuntu0.22.04.1 \
libsasl2-dev=2.1.27+dfsg2-3ubuntu1.2 \
libssl-dev=3.0.2-0ubuntu1.21 \
libxml2-dev=2.9.13+dfsg-1ubuntu0.11 \
openssl=3.0.2-0ubuntu1.21 \
systemtap-sdt-dev=4.6-2 \
zip=3.0-12build2 \
&& rm -rf /var/lib/apt/lists/*
CMD ["/bin/bash"]