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

fanng pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/branch-0.6 by this push:
     new 7f99f9fea [MINOR] support publish Gravitino Iceberg REST catalog 
server docker image (#4453)
7f99f9fea is described below

commit 7f99f9fea4f6ccdad48ec4c934aed18cf6e1dded
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Aug 9 11:58:05 2024 +0800

    [MINOR] support publish Gravitino Iceberg REST catalog server docker image 
(#4453)
    
    ### What changes were proposed in this pull request?
    support publish Gravitino Iceberg REST catalog server docker image
    
    ### Why are the changes needed?
    publish Gravitino Iceberg REST catalog server docker image is necessary
    before release.
    
    ### Does this PR introduce _any_ user-facing change?
    no
    
    ### How was this patch tested?
    verified by publish docker image
    
    Co-authored-by: FANNG <[email protected]>
---
 .github/workflows/docker-image.yml        | 4 ++++
 dev/docker/iceberg-rest-server/Dockerfile | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/docker-image.yml 
b/.github/workflows/docker-image.yml
index 1993a209a..f064ea789 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -15,6 +15,7 @@ on:
           - 'gravitino-ci-trino'
           - 'gravitino-ci-doris'
           - 'gravitino-ci-ranger'
+          - 'gravitino-iceberg-rest-server'
           - 'trino'
           - 'hive'
           - 'ranger'
@@ -64,6 +65,9 @@ jobs:
           elif [ "${{ github.event.inputs.image }}" == "ranger" ]; then
             echo "image_type=ranger" >> $GITHUB_ENV
             echo "image_name=datastrato/ranger" >> $GITHUB_ENV
+          elif [ "${{ github.event.inputs.image }}" == 
"gravitino-iceberg-rest-server" ]; then
+            echo "image_type=iceberg-rest-server" >> $GITHUB_ENV
+            echo "image_name=datastrato/gravitino-iceberg-rest-server" >> 
$GITHUB_ENV
           fi
 
       - name: Check publish Docker token
diff --git a/dev/docker/iceberg-rest-server/Dockerfile 
b/dev/docker/iceberg-rest-server/Dockerfile
index a85f67072..d4a85915f 100644
--- a/dev/docker/iceberg-rest-server/Dockerfile
+++ b/dev/docker/iceberg-rest-server/Dockerfile
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-FROM openjdk:17
+FROM openjdk:17-jdk-buster
 
 LABEL maintainer="[email protected]"
 

Reply via email to