Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions integration-tests/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG JDK_VERSION=17-slim-bullseye
FROM openjdk:$JDK_VERSION as druidbase
ARG JDK_VERSION=21-jre-jammy
FROM eclipse-temurin:$JDK_VERSION AS druidbase

# Bundle everything into one script so cleanup can reduce image size.
# Otherwise docker's layered images mean that things are not actually deleted.
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/docker/base-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ apt-get update
# wget
apt-get install -y wget

# MySQL (Metadata store), modern Debian-based systems install mariadb-server
apt-get install -y default-mysql-server
# MariaDB metadata store
apt-get install -y mariadb-server

# Supervisor
apt-get install -y supervisor
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/script/docker_build_containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ else
11 | 17 | 21)
echo "Build druid-cluster with Java $DRUID_INTEGRATION_TEST_JVM_RUNTIME"
docker build -t druid/cluster \
--build-arg JDK_VERSION=$DRUID_INTEGRATION_TEST_JVM_RUNTIME-slim-bullseye \
--build-arg JDK_VERSION=$DRUID_INTEGRATION_TEST_JVM_RUNTIME-jre-jammy \
--build-arg ZK_VERSION \
--build-arg KAFKA_VERSION \
--build-arg CONFLUENT_VERSION \
Expand Down