From cc317bdf5bfedf86a58bcd1fd1238855dcca8b63 Mon Sep 17 00:00:00 2001 From: Haonan Date: Wed, 17 Jul 2024 01:07:19 +0800 Subject: [PATCH] Update Dockerfile.iotdb-server to use java 17 (#100) --- .github/workflows/e2e.yml | 6 ++---- test/e2e/Dockerfile.iotdb-server | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 0d1c6f5..8ef256f 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -20,10 +20,8 @@ jobs: build: name: e2e test - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] + runs-on: ubuntu-latest + steps: - name: Check out code into the Go module directory diff --git a/test/e2e/Dockerfile.iotdb-server b/test/e2e/Dockerfile.iotdb-server index 4fbd70a..60ea62e 100644 --- a/test/e2e/Dockerfile.iotdb-server +++ b/test/e2e/Dockerfile.iotdb-server @@ -17,7 +17,7 @@ # under the License. # -FROM openjdk:11-jre-slim +FROM eclipse-temurin:17-jre-focal RUN apt update \ && apt install -y procps && apt clean