taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit cf610308e1ccaf8c8ae75cd5536430cd9543aff8
parent 09b8d7ada42da878e48d2732f9776d1ff2a1ca0f
Author: Devan Carpenter <devan@taler.net>
Date:   Mon, 15 Jan 2024 13:04:05 -0500

ci: add packaging dependencies

Diffstat:
Mcontrib/ci/Containerfile | 21++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -4,13 +4,20 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update -yq && \ apt-get install -yqq \ - git \ - python3 \ - codespell \ - python3-distutils \ - make \ - zip \ - jq + git \ + python3 \ + codespell \ + python3-distutils \ + make \ + zip \ + jq \ + # Debian packaging tools \ + po-debconf \ + build-essential \ + debhelper-compat \ + devscripts \ + git-buildpackage \ + && rm -rf /var/lib/apt/lists/* RUN npm install -g pnpm