This is an automated email from the ASF dual-hosted git repository. fanng pushed a commit to branch mcp_docker in repository https://gitbox.apache.org/repos/asf/gravitino.git
commit 0b2cb79e814807eefef99dcafcd4bfb773c697c9 Author: fanng <[email protected]> AuthorDate: Fri Aug 15 20:56:22 2025 +0800 iceberg doc --- dev/docker/build-docker.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/docker/build-docker.sh b/dev/docker/build-docker.sh index c48607e615..9b4758e1ba 100755 --- a/dev/docker/build-docker.sh +++ b/dev/docker/build-docker.sh @@ -27,7 +27,7 @@ usage() { cat << EOF Usage: -./build-docker.sh --platform [all|linux/amd64|linux/arm64] --type [gravitino|hive|kerberos-hive|trino|doris|ranger|iceberg-rest-server] --image {image_name} --tag {tag_name} --latest +./build-docker.sh --platform [all|linux/amd64|linux/arm64] --type [gravitino|hive|kerberos-hive|trino|doris|ranger|iceberg-rest-server|mcp-server] --image {image_name} --tag {tag_name} --latest Notice: You shouldn't use 'all' for the platform if you don't use the Github action to publish the Docker image. EOF @@ -115,6 +115,8 @@ elif [ "${component_type}" == "ranger" ]; then build_args="--build-arg RANGER_PACKAGE_NAME=${RANGER_PACKAGE_NAME} --build-arg MYSQL_CONNECTOR_PACKAGE_NAME=${MYSQL_CONNECTOR_PACKAGE_NAME} --build-arg LOG4JDBC_PACKAGE_NAME=${LOG4JDBC_PACKAGE_NAME} --build-arg RANGER_VERSION=${RANGER_VERSION}" elif [ "${component_type}" == "iceberg-rest-server" ]; then . ${script_dir}/iceberg-rest-server/iceberg-rest-server-dependency.sh +elif [ "${component_type}" == "mcp-server" ]; then + . ${script_dir}/mcp-server/mcp-server-dependency.sh else echo "ERROR : ${component_type} is not a valid component type" usage
