Skip to content

Commit

Permalink
Insteall procps tools for rocky docker images (#10155)
Browse files Browse the repository at this point in the history
To fix issue: #10154

Install 'procps' to fix 'ps: command not found' in nvidia Rocky9 Docker containers,

when runing integration tests with jenkins/spark-test.sh

'procps' is required for rocky docker containers to run spark standalone cluster, see:

    https://github.com/apache/spark/blob/v3.3.2/bin/load-spark-env.sh#L68

Signed-off-by: Tim Liu <timl@nvidia.com>
  • Loading branch information
NvTimLiu authored Jan 5, 2024
1 parent 26bdf0c commit c178e20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jenkins/Dockerfile-blossom.integration.rocky
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -33,7 +33,7 @@ ARG URM_URL
# Install jdk-8, jdk-11, maven, docker image
RUN yum update -y && \
yum install epel-release -y && \
yum install -y java-1.8.0-openjdk-devel java-11-openjdk-devel wget expect rsync zip unzip
yum install -y java-1.8.0-openjdk-devel java-11-openjdk-devel wget expect rsync zip unzip procps

# The plugin: net.alchim31.maven requires a higher mvn version.
ENV MAVEN_HOME "/usr/local/apache-maven-3.6.3"
Expand Down

0 comments on commit c178e20

Please sign in to comment.