# baseimage **Repository Path**: mirrors_spring-cloud/baseimage ## Basic Information - **Project Name**: baseimage - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-08-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springcloud/baseimage Base Docker image for Spring Cloud Data Flow, Spring Cloud Skipper, Stream Applications and Tasks. #### 1. Build the image ``` docker build -t springcloud/baseimage: . ``` publish the image to DockerHub: ``` docker push springcloud/baseimage: ``` #### 2. Check the bundled JDK version You can check the Java version bundled with a particular image tag, like this: ``` docker run -it --rm springcloud/baseimage: java -version ``` or by retrieving the `jdk.version` image label: ``` docker inspect springcloud/baseimage: | grep jdk.version ```