summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2024-12-18 10:11:10 +0100
committerLinus Färnstrand <linus@mullvad.net>2024-12-18 10:27:07 +0100
commit7c3375a969ddb915f462171ed1a1964ed5cb1dcd (patch)
treebb1f4beb897fb805d271e4b40c59ef4011c3536b
parentc6bdff016666d469feb18ff595e8dcd26398e277 (diff)
downloadmullvadvpn-7c3375a969ddb915f462171ed1a1964ed5cb1dcd.tar.xz
mullvadvpn-7c3375a969ddb915f462171ed1a1964ed5cb1dcd.zip
Install libarchive-tools in base Linux build container
Needed to experiment with Arch Linux package building
-rw-r--r--building/Dockerfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/building/Dockerfile b/building/Dockerfile
index 5fd58233c9..9bce57f55e 100644
--- a/building/Dockerfile
+++ b/building/Dockerfile
@@ -48,6 +48,8 @@ RUN dpkg --add-architecture arm64 && apt-get update -y && apt-get install -y \
rpm \
# For cross-compiling/linting towards Windows
gcc-mingw-w64-x86-64 \
+ # For building Arch Linux packages
+ libarchive-tools \
&& rm -rf /var/lib/apt/lists/*
# === Rust ===