11 lines
710 B
Docker
11 lines
710 B
Docker
FROM alt:p10 AS build
|
|
|
|
RUN apt-get update && apt-get -yqVV install \
|
|
boost-devel boost-lockfree-devel boost-asio-devel boost-filesystem-devel boost-program_options-devel \
|
|
cmake diffutils doxygen \
|
|
clang17.0 build-essential \
|
|
time stow openssl openssl-devel python3-module-elftools protobuf-compiler \
|
|
pkg-config libprotobuf-devel libcares-devel libyaml-cpp-devel libtool liburing-devel liblz4-devel libgnutlsxx-devel libgnutlsxx28 libgnutls-devel libxfs-devel libcryptopp-devel libpciaccess-devel libnuma-devel libfmt-devel liblksctp-devel liblksctp libarchive libarchive-devel libxml2-devel lksctp-tools make meson ninja-build ragel valgrind valgrind-devel libhwloc-devel libuv-devel
|
|
|
|
CMD ["/bin/bash"]
|