This is an automated email from the ASF dual-hosted git repository.
eze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new fadf3cf Update Dockerfile
fadf3cf is described below
commit fadf3cf6b0e3dd81fb5daf576d7eb9e9d72c7669
Author: Evan Zelkowitz <[email protected]>
AuthorDate: Wed Mar 24 09:46:24 2021 -0600
Update Dockerfile
Adding a clean step to shrink the image
---
docker/ubuntu/Dockerfile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/docker/ubuntu/Dockerfile b/docker/ubuntu/Dockerfile
index fd202bf..025c634 100644
--- a/docker/ubuntu/Dockerfile
+++ b/docker/ubuntu/Dockerfile
@@ -9,4 +9,7 @@ RUN apt-get update; \
libpcre3-dev libcap-dev libhwloc-dev libunwind8 libunwind-dev zlib1g-dev \
tcl-dev tcl8.6-dev libjemalloc-dev libluajit-5.1-dev liblzma-dev \
libhiredis-dev libbrotli-dev libncurses-dev libgeoip-dev libmagick++-dev \
- libmaxminddb-dev libcjose-dev libcjose0 libjansson-dev;
+ libmaxminddb-dev libcjose-dev libcjose0 libjansson-dev; \
+
+ DEBIAN_FRONTEND=noninteractive apt-get autoremove; apt-get clean;
+