Commit 7a3d04dc62ab582c569eb63106d54d03b308f39e

Edward Thomson 2019-11-23T12:14:23

ci: don't delete the apt cache Deleting the apt cache can be helpful for reducing the size of a container, but since we don't push it anywhere, it only hinders our ability to debug problems while working on the container. Keep it.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/azure-pipelines/docker/xenial b/azure-pipelines/docker/xenial
index 74be1ac..108f5de 100644
--- a/azure-pipelines/docker/xenial
+++ b/azure-pipelines/docker/xenial
@@ -21,9 +21,7 @@ RUN echo 'deb http://ppa.launchpad.net/hola-launchpad/valgrind/ubuntu xenial mai
         openssl \
         pkgconf \
         python \
-        valgrind \
-        && \
-    rm -rf /var/lib/apt/lists/*
+        valgrind
 RUN mkdir /var/run/sshd
 
 RUN cd /tmp && \