Skip to content

Commit d5b7fbb

Browse files
committed
containers: Add psmisc for Ubuntu
psmisc contains `killall`, which is needed by `setup.sh`.
1 parent 68475d5 commit d5b7fbb

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

containers/ubuntu-24.04

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM docker.io/library/ubuntu:24.04
22

33
RUN apt update && \
44
apt --yes --no-install-recommends full-upgrade && \
5-
apt --yes --no-install-recommends install build-essential zstd && \
5+
apt --yes --no-install-recommends install build-essential psmisc zstd && \
66
apt --yes --no-install-recommends install ca-certificates git gnupg patchelf python3 unzip && \
77
apt --yes --no-install-recommends install clang libclang-rt-dev && \
88
apt --yes --purge autoremove && \

meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ glib_version = '2.58'
9494
# Ubuntu 22.04 has libfabric 1.11.0
9595
libfabric_version = '1.11.0'
9696
# bson_array_builder_t needs libbson 1.25.0
97+
# Ubuntu 24.04 has libbson 1.26.0
9798
libbson_version = '1.25.0'
9899

99100
hdf_version = '1.14.0'
@@ -790,7 +791,7 @@ endif
790791
#add_languages('cpp')
791792

792793
#foreach lang: ['c', 'cc']
793-
# executable('hello-word-@0@'.format(lang), files('example/hello-world.@0@'.format(lang)),
794+
# executable('hello-world-@0@'.format(lang), files('example/hello-world.@0@'.format(lang)),
794795
# dependencies: [glib_dep, libbson_dep, julea_dep, julea_client_deps['object'], julea_client_deps['kv'], julea_client_deps['db']],
795796
# include_directories: julea_incs,
796797
# )

0 commit comments

Comments
 (0)