This is an automated email from the ASF dual-hosted git repository. snuyanzin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-ci-docker.git
commit 98df8a006765a05f964fc0de796e55b931fa9d83 Author: Matthias Pohl <[email protected]> AuthorDate: Mon Jan 22 09:30:30 2024 +0100 [hotfix][ci] Changes formatting of Dockerfile to enable comments per package --- base/Dockerfile | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index fe51cc7..ae1ed85 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -3,7 +3,30 @@ FROM ubuntu:xenial # install packages RUN set -eux; \ apt-get update; apt-get upgrade -y ; \ - apt-get install -y gosu sudo locales make less build-essential openjdk-8-jdk libjemalloc-dev curl libapr1 unzip uuid-runtime jq bsdmainutils wget python docker.io psmisc software-properties-common apt-transport-https; \ + apt-get install -y \ + gosu \ + sudo \ + locales \ + make \ + less \ + build-essential \ + `# default JDK for Apache Flink` \ + openjdk-8-jdk \ + `# FLINK-18356` \ + libjemalloc-dev \ + curl \ + libapr1 \ + unzip \ + uuid-runtime \ + jq \ + bsdmainutils \ + wget \ + `# for pyflink test suite` \ + python \ + docker.io \ + psmisc \ + software-properties-common \ + apt-transport-https; \ rm -rf /var/lib/apt/lists/*; # Install latest git
