Skip to content
Merged
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
11 changes: 9 additions & 2 deletions containers/pre_built_workers/java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM openjdk:11-jdk-bullseye
FROM eclipse-temurin:11-jdk

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
curl \
unzip \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir -p /pre
WORKDIR /pre
Expand All @@ -37,7 +44,7 @@ RUN git rev-parse $GITREF >> GRPC_GIT_COMMIT.txt

RUN ./gradlew -PskipAndroid=true -PskipCodegen=true -Dorg.gradle.jvmargs=-Xmx2g :grpc-benchmarks:installDist

FROM openjdk:11-jdk-slim-bullseye
FROM eclipse-temurin:11-jdk-jammy

RUN mkdir -p /execute
WORKDIR /execute
Expand Down
Loading