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 05dacff9d988d18d55c18ebcb39a4a741431de5c
Author: Xiang Fu <[email protected]>
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..c24db6a 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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to