aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Carpenter <devan@taler.net>2024-01-15 13:04:05 -0500
committerDevan Carpenter <devan@taler.net>2024-01-15 14:36:29 -0500
commitcf610308e1ccaf8c8ae75cd5536430cd9543aff8 (patch)
treeb40c456ceea8c6be6798aeb24eecb945b13d4d12
parent09b8d7ada42da878e48d2732f9776d1ff2a1ca0f (diff)
downloadwallet-core-cf610308e1ccaf8c8ae75cd5536430cd9543aff8.tar.gz
wallet-core-cf610308e1ccaf8c8ae75cd5536430cd9543aff8.tar.bz2
wallet-core-cf610308e1ccaf8c8ae75cd5536430cd9543aff8.zip
ci: add packaging dependencies
-rw-r--r--contrib/ci/Containerfile21
1 files changed, 14 insertions, 7 deletions
diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile
index 39bd740a9..a9da11ae8 100644
--- 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