This is an automated email from the ASF dual-hosted git repository.
fanng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 1ea4860e8 [MINOR] support publish Gravitino Iceberg REST catalog
server docker image (#4431)
1ea4860e8 is described below
commit 1ea4860e8abe047f5469ed39b3f43da2d28cd7e5
Author: FANNG <[email protected]>
AuthorDate: Fri Aug 9 10:55:16 2024 +0800
[MINOR] support publish Gravitino Iceberg REST catalog server docker image
(#4431)
### 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
---
.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]"