Skip to content

Commit 126d9d4

Browse files
phracekhhorak
authored andcommitted
Perl-5.26 for RHEL7 reached EOL in May 2021
Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 8de7e53 commit 126d9d4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: 5.26/.exclude-rhel7

Whitespace-only changes.

Diff for: 5.26/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ the nodejs itself is included just to make the npm work.
2929
Usage in Openshift
3030
------------------
3131

32-
In this example, we will assume that you are using the `rhscl/perl-526-rhel7` image, available via `perl:5.26` imagestream tag in Openshift.
32+
In this example, we will assume that you are using the `ubi8/perl-526` image, available via `perl:5.26` imagestream tag in Openshift.
3333
To build a simple [perl-sample-app](https://github.com/sclorg/dancer-ex.git) application in Openshift:
3434

3535
```
@@ -70,10 +70,10 @@ To use the Perl image in a Dockerfile, follow these steps:
7070
#### 1. Pull a base builder image to build on
7171

7272
```
73-
podman pull rhscl/perl-526-rhel7
73+
podman pull ubi8/perl-526
7474
```
7575

76-
An RHEL7 image `rhscl/perl-526-rhel7` is used in this example.
76+
An RHEL8 image `ubi8/perl-526` is used in this example.
7777

7878
#### 2. Pull and application code
7979

@@ -96,7 +96,7 @@ For all these three parts, users can either setup all manually and use commands
9696
##### 3.1 To use your own setup, create a Dockerfile with this content:
9797

9898
```
99-
FROM rhscl/perl-526-rhel7
99+
FROM ubi8/perl-526
100100
101101
# Add application sources
102102
ADD app-src .
@@ -119,7 +119,7 @@ CMD exec httpd -C 'Include /opt/app-root/etc/httpd.conf' -D FOREGROUND
119119
##### 3.2 To use the Source-to-Image scripts and build an image using a Dockerfile, create a Dockerfile with this content:
120120

121121
```
122-
FROM rhscl/perl-526-rhel7
122+
FROM ubi8/perl-526
123123
124124
# Add application sources to a directory that the assemble scriptexpects them
125125
# and set permissions so that the container runs without root access

0 commit comments

Comments
 (0)