14 lines
250 B
Plaintext
14 lines
250 B
Plaintext
# Image used by bazel remote execution hosts.
|
|
|
|
FROM ubuntu:24.04
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
build-essential \
|
|
libxml2-dev \
|
|
libssl-dev \
|
|
systemtap-sdt-dev
|
|
|
|
CMD ["/bin/bash"]
|