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 2020/11/20 22:24:57 UTC

[incubator-pinot] branch update_superset_docker_build_script created (now 03285a9)

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

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


      at 03285a9  updae superset docker image build script

This branch includes the following new commits:

     new 03285a9  updae superset docker image build script

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.



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


[incubator-pinot] 01/01: updae superset docker image 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 update_superset_docker_build_script
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit 03285a943e70e38aad5fe63819cc9272d3c23747
Author: Xiang Fu <fx...@gmail.com>
AuthorDate: Fri Nov 20 14:24:35 2020 -0800

    updae superset docker image build script
---
 docker/images/pinot-superset/Dockerfile | 5 +++--
 docker/images/pinot-superset/README.md  | 6 +++---
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/docker/images/pinot-superset/Dockerfile b/docker/images/pinot-superset/Dockerfile
index a2c4345..7a9e77a 100644
--- a/docker/images/pinot-superset/Dockerfile
+++ b/docker/images/pinot-superset/Dockerfile
@@ -17,8 +17,8 @@
 # under the License.
 #
 
-ARG PRESET_SUPERSET_IMAGE_TAG=latest
-FROM preset/superset:${PRESET_SUPERSET_IMAGE_TAG}
+ARG SUPERSET_IMAGE_TAG=latest
+FROM apache/incubator-superset:${SUPERSET_IMAGE_TAG}
 
 # Switching to root to install the required packages
 USER root
@@ -30,4 +30,5 @@ RUN pip install --no-cache -r requirements-db.txt
 
 COPY examples /etc/examples/pinot
 
+# Switching back to using the `superset` user
 USER superset
diff --git a/docker/images/pinot-superset/README.md b/docker/images/pinot-superset/README.md
index 2aa5afb..f74edfd 100644
--- a/docker/images/pinot-superset/README.md
+++ b/docker/images/pinot-superset/README.md
@@ -26,12 +26,12 @@ Docker image for [Superset](https://github.com/apache/incubator-superset) with P
 
 ## How to build
 
-Pinot Superset image is built on top of [preset/superset](https://hub.docker.com/r/preset/superset) with Pinotdb driver.
+Pinot Superset image is built on top of [apache/incubator-superset](https://hub.docker.com/r/apache/incubator-superset) with Pinotdb driver.
 
-Below command will build Superset image based on `preset/superset:0.37` then tag it as `apachepinot/pinot-superset:0.37`.
+Below command will build Superset image based on `apache/incubator-superset:0.37` then tag it as `apachepinot/pinot-superset:0.37`.
 
 ```bash
-docker build --build-arg PRESET_SUPERSET_IMAGE_TAG=0.37 --tag apachepinot/pinot-superset:0.37 .
+docker build --build-arg SUPERSET_IMAGE_TAG=0.37 --tag apachepinot/pinot-superset:0.37 .
 ```
 
 ## How to push


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