diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-04-01 02:48:50 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-04-01 02:48:50 +0200 |
commit | 0e97572f543d1eb5467d2b6065ef29fc10101419 (patch) | |
tree | 5f0a56021b42ea3ada52e4244e45ab645900df50 | |
parent | de0879931ee3f9e5191b361d673e5e5d8d4dadcf (diff) |
-ensure cut is installed
-rw-r--r-- | contrib/ci/Containerfile | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile index 7ce9e37e3..ac31c7ade 100644 --- a/contrib/ci/Containerfile +++ b/contrib/ci/Containerfile @@ -8,42 +8,43 @@ RUN apt-get update -yqq && \ autopoint \ curl \ bash \ - git \ + coreutils \ + git \ libcurl4-gnutls-dev \ libgcrypt-dev \ libidn11-dev \ libjansson-dev \ - libmicrohttpd-dev \ + libmicrohttpd-dev \ libpq-dev \ libqrencode-dev \ - libsodium-dev \ - libtool \ + libsodium-dev \ + libtool \ libunistring-dev \ make \ pkg-config \ python3-pip \ python3-sphinx \ python3-sphinx-rtd-theme \ - recutils \ - texinfo \ + recutils \ + texinfo \ zlib1g-dev \ # For mustach testing (optional) \ libjson-c-dev \ - # Debian packaging tools \ - po-debconf \ - build-essential \ - debhelper-compat \ - devscripts \ + # Debian packaging tools \ + po-debconf \ + build-essential \ + debhelper-compat \ + devscripts \ git-buildpackage \ # Documentation dependencies \ - doxygen \ - graphviz \ - pandoc \ + doxygen \ + graphviz \ + pandoc \ # Test suite dependencies \ jq \ - postgresql \ - sudo \ - wget + postgresql \ + sudo \ + wget # Install Taler (and friends) packages RUN curl -sS https://deb.taler.net/apt-nightly/taler-bookworm-ci.sources \ @@ -57,10 +58,10 @@ Pin-Priority: 999' > /etc/apt/preferences.d/taler RUN cat /etc/apt/preferences.d/taler && \ apt-get update -y && \ apt-get install -y \ - libgnunet-dev \ - libgnunet \ - gnunet \ -&& rm -rf /var/lib/apt/lists/* + libgnunet-dev \ + libgnunet \ + gnunet \ + && rm -rf /var/lib/apt/lists/* WORKDIR /workdir |