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 23:48:39 UTC

[incubator-pinot] branch master updated: update superset source repo in superset docker image build script (#6283)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c4f8ec1  update superset source repo in superset docker image build script (#6283)
c4f8ec1 is described below

commit c4f8ec120e3fa0eb0a01590e80b64811c01336ed
Author: Xiang Fu <fx...@gmail.com>
AuthorDate: Fri Nov 20 15:48:21 2020 -0800

    update superset source repo in superset docker image build script (#6283)
---
 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