File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
java/org/jenkinsci/plugins/durabletask
resources/org/jenkinsci/plugins/durabletask/CentOSFixture Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 28
28
import org .jenkinsci .test .acceptance .docker .DockerFixture ;
29
29
import org .jenkinsci .test .acceptance .docker .fixtures .JavaContainer ;
30
30
31
- /** Analogue of {@link JavaContainer} but using CentOS rather than Ubuntu. */
31
+ /** Analogue of {@link JavaContainer} but using UBI (formerly CentOS) rather than Ubuntu. */
32
32
@ DockerFixture (id = "centos" , ports = 22 )
33
33
public class CentOSFixture extends DockerContainer {}
Original file line number Diff line number Diff line change 1
- FROM centos:7.9.2009
1
+ FROM registry.access.redhat.com/ubi9/ubi
2
2
RUN yum -y install \
3
3
openssh-server \
4
- java-11-openjdk-headless \
4
+ java-21-openjdk-headless \
5
+ procps-ng \
5
6
&& yum clean all
6
7
RUN ssh-keygen -A
7
8
RUN useradd test -d /home/test && \
You can’t perform that action at this time.
0 commit comments