From b7eebf81cc48919680e0643a192775d998a43cf2 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Thu, 25 Jul 2019 12:55:15 +0100
Subject: [PATCH] ci: Install latest versions of dependencies

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 ci/Dockerfile.in | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/ci/Dockerfile.in b/ci/Dockerfile.in
index f9613f342..9a6108a21 100644
--- a/ci/Dockerfile.in
+++ b/ci/Dockerfile.in
@@ -1,4 +1,27 @@
 FROM @BASE_IMAGE@
 COPY sources.list /etc/apt/sources.list.d/pressure-vessel.list
-RUN apt-get update
+
+RUN \
+set -eux; \
+apt-get update; \
+apt-get -y install \
+    bubblewrap \
+    libcapsule-tools-relocatable:amd64 \
+    libcapsule-tools-relocatable:i386 \
+    libblkid1 \
+    libcap2 \
+    libelf1:amd64 \
+    libelf1:i386 \
+    libffi6 \
+    libglib2.0-0 \
+    libmount1 \
+    libpcre3 \
+    libselinux1
+    libxau6 \
+    zlib1g:amd64 \
+    zlib1g:i386 \
+    ${NULL+}
+# Deliberately not including `rm -rf /var/lib/apt/lists/*`, because we
+# need to be able to run `apt-get source` later
+
 # vim:set sw=4 sts=4 et ft=dockerfile:
-- 
GitLab