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 b8cc20a3d2f093a97ef640dcf029cc16306bf950 Author: Xiang Fu <[email protected]> AuthorDate: Sat Mar 13 16:21:27 2021 -0800 Fixing presto docker build script --- docker/images/pinot-presto/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/images/pinot-presto/Dockerfile b/docker/images/pinot-presto/Dockerfile index 3050320..a3e847c 100644 --- a/docker/images/pinot-presto/Dockerfile +++ b/docker/images/pinot-presto/Dockerfile @@ -29,8 +29,10 @@ ENV PRESTO_BUILD_DIR=/home/presto/build # extra dependency for running launcher RUN apt-get update && \ + apt-get install -y --no-install-recommends software-properties-common && \ + add-apt-repository ppa:deadsnakes/ppa && \ apt-get install -y --no-install-recommends \ - vim wget curl git && \ + vim wget curl git python3.8 python3-pip && \ rm -rf /var/lib/apt/lists/* RUN groupadd -g 999 presto && \ @@ -57,4 +59,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]
