Files
mongo/bazel/remote_execution_container/ubuntu24/dockerfile
Eric Lavigne 0be3db5ba5 SERVER-110680: Add initial devcontainer setup (#41171)
Co-authored-by: Ivan Fefer <ivan.fefer@mongodb.com>
GitOrigin-RevId: f6ac78093d8fa33d34719d46f7ea08c2442cda4d
2025-09-18 18:49:45 +00:00

32 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:24.04@sha256:9cbed754112939e914291337b5e554b07ad7c392491dba6daf25eef1332a22e8
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential=12.10ubuntu1 \
libcurl4-openssl-dev=8.5.0-2ubuntu10.6 \
libgssapi-krb5-2=1.20.1-6ubuntu2.6 \
libkrb5-dev=1.20.1-6ubuntu2.6 \
libldap2-dev=2.6.7+dfsg-1~exp1ubuntu8.2 \
libncurses-dev=6.4+20240113-1ubuntu2 \
libsasl2-dev=2.1.28+dfsg1-5ubuntu3.1 \
libssl-dev=3.0.13-0ubuntu3.5 \
libxml2-dev=2.9.14+dfsg-1.3ubuntu3.5 \
systemtap-sdt-dev=5.0-2ubuntu1 \
&& rm -rf /var/lib/apt/lists/*
CMD ["/bin/bash"]