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 <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
