You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xi...@apache.org on 2021/03/14 01:25:46 UTC

[incubator-pinot] branch fixing_presto_docker_image updated (05dacff -> a36c73e)

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

xiangfu pushed a change to branch fixing_presto_docker_image
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 05dacff  Fixing presto docker build script
     new a36c73e  Fixing presto docker build script

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (05dacff)
            \
             N -- N -- N   refs/heads/fixing_presto_docker_image (a36c73e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker/images/pinot-presto/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[incubator-pinot] 01/01: Fixing presto docker build script

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch fixing_presto_docker_image
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit a36c73ec14ba9b6685d51f2d8886f48706ebe66e
Author: Xiang Fu <fx...@gmail.com>
AuthorDate: Sat Mar 13 16:21:27 2021 -0800

    Fixing presto docker build script
---
 docker/images/pinot-presto/Dockerfile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/docker/images/pinot-presto/Dockerfile b/docker/images/pinot-presto/Dockerfile
index 3050320..ee9e8f0 100644
--- a/docker/images/pinot-presto/Dockerfile
+++ b/docker/images/pinot-presto/Dockerfile
@@ -30,9 +30,10 @@ ENV PRESTO_BUILD_DIR=/home/presto/build
 # extra dependency for running launcher
 RUN apt-get update && \
     apt-get install -y --no-install-recommends \
-    vim wget curl git && \
+    build-essential vim wget curl git \
+    gcc libpq-dev python-dev python-pip python3-dev python3-pip python3-venv python3-wheel && \
+    pip3 install --upgrade pip setuptools wheel && \
     rm -rf /var/lib/apt/lists/*
-
 RUN groupadd -g 999 presto && \
     useradd -r -u 999 -g presto --create-home --shell /bin/bash presto
 USER presto
@@ -57,4 +58,4 @@ WORKDIR ${PRESTO_HOME}
 
 ENTRYPOINT ["./bin/launcher"]
 
-CMD ["run"]
\ No newline at end of file
+CMD ["run"]


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org