From 22ba679a770d3572bd3d24d8637dd3fd30fb6309 Mon Sep 17 00:00:00 2001 From: Alexander Lutay Date: Fri, 28 Jun 2019 16:02:53 +0200 Subject: [PATCH] TT#60950 Improve libtcap docker image size Change-Id: I59cbbd7d457dffc36070cb154d08bc681619d8ba --- t/Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/t/Dockerfile b/t/Dockerfile index 86abeaa..701e8b4 100644 --- a/t/Dockerfile +++ b/t/Dockerfile @@ -5,10 +5,14 @@ FROM docker.mgm.sipwise.com/sipwise-buster:latest # is updated with the current date. It will force refresh of all # of the base images and things like `apt-get update` won't be using # old cached versions when the Dockerfile is built. -ENV REFRESHED_AT 2019-06-27 +ENV REFRESHED_AT 2019-06-28 -RUN apt-get update -RUN apt-get install --assume-yes git abi-compliance-checker +RUN apt-get update && \ + apt-get install --assume-yes \ + abi-compliance-checker \ + git \ + && \ + apt-get clean RUN echo './t/testrunner' >>/root/.bash_history