You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ez...@apache.org on 2021/03/24 15:41:30 UTC

[trafficserver-ci] branch main updated: Update Dockerfile

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 d7798fd  Update Dockerfile
d7798fd is described below

commit d7798fd8c07b06c846ff5da885bbd867def352e6
Author: Evan Zelkowitz <ez...@apache.org>
AuthorDate: Wed Mar 24 09:41:25 2021 -0600

    Update Dockerfile
    
    Adding noninteractive mode due to tzdata
---
 docker/ubuntu/Dockerfile | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/docker/ubuntu/Dockerfile b/docker/ubuntu/Dockerfile
index 23470a7..fd202bf 100644
--- a/docker/ubuntu/Dockerfile
+++ b/docker/ubuntu/Dockerfile
@@ -1,11 +1,12 @@
 FROM ubuntu:20.04
 
 RUN apt-get update; \
-    apt-get -y install build-essential llvm ccache make pkgconf bison flex g++ clang gettext libc++-dev \
-    autoconf automake libtool autotools-dev git distcc file wget openssl hwloc intltool-debian clang-10; \
+    DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential llvm ccache \
+    make pkgconf bison flex g++ clang gettext libc++-dev autoconf automake \
+    libtool autotools-dev git distcc file wget openssl hwloc intltool-debian clang-10; \
 
-    apt-get -y install libssl-dev libexpat1-dev libpcre3-dev libcap-dev \
-    libhwloc-dev libunwind8 libunwind-dev zlib1g-dev \
+    DEBIAN_FRONTEND=noninteractive apt-get -y install libssl-dev libexpat1-dev \
+    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;
+    libhiredis-dev libbrotli-dev libncurses-dev libgeoip-dev libmagick++-dev \
+    libmaxminddb-dev libcjose-dev libcjose0 libjansson-dev;