You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ie...@apache.org on 2020/02/19 12:43:03 UTC

[avro] branch master updated: AVRO-2732: Add missing packages to avoid warnings in the docker image

This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 1dbf61e  AVRO-2732: Add missing packages to avoid warnings in the docker image
1dbf61e is described below

commit 1dbf61ee8cf2866e6e590388198e64c190af1e3f
Author: Ismaël Mejía <ie...@gmail.com>
AuthorDate: Wed Feb 19 11:30:49 2020 +0100

    AVRO-2732: Add missing packages to avoid warnings in the docker image
---
 share/docker/Dockerfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/share/docker/Dockerfile b/share/docker/Dockerfile
index 1cb013a..a68dc8a 100644
--- a/share/docker/Dockerfile
+++ b/share/docker/Dockerfile
@@ -28,6 +28,7 @@ ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=isolemnlysweariamuptonogood \
 RUN apt-get -qqy update \
  && apt-get -qqy install --no-install-recommends ant \
                                                  apt-transport-https \
+                                                 apt-utils \
                                                  asciidoc \
                                                  bison \
                                                  bzip2 \
@@ -124,11 +125,11 @@ RUN curl -sSL https://cpanmin.us \
 ENV PIP_NO_CACHE_DIR=off
 
 # Install Python2 packages
-RUN python2 -m pip install --upgrade pip setuptools \
+RUN python2 -m pip install --upgrade pip setuptools wheel \
  && python2 -m pip install zstandard
 
 # Install Python3 packages
-RUN python3 -m pip install --upgrade pip setuptools \
+RUN python3 -m pip install --upgrade pip setuptools wheel \
  && python3 -m pip install tox zstandard
 
 # Install .NET SDK