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 <fx19880...@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-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to