Skip to content

Commit 2303345

Browse files
committed
Restore use of 7-slim
1 parent 6e89a5d commit 2303345

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

site/create-image-with-internet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Image Tool supports creating Linux based WebLogic Docker images, applying We
44

55
In this use case, the Image Tool will:
66

7-
1. Start with a base-level operating system image (`ghcr.io/oracle/oraclelinux:8-slim`).
7+
1. Start with a base-level operating system image (`ghcr.io/oracle/oraclelinux:7-slim`).
88
2. Update the image with the necessary packages for installing WebLogic Server.
99
3. Install Java and WebLogic Server.
1010

@@ -55,7 +55,7 @@ https_proxy=http://company-proxy.com:80 --build-arg WLS_PKG=fmw_12.2.1.3.0_wls_D
5555
JAVA_PKG=jdk-8u201-linux-x64.tar.gz --build-arg PATCHDIR=patches /home/acmeuser/wlsimgbuilder_temp8791654163579491583
5656
Sending build context to Docker daemon 1.08GB
5757
58-
Step 1/46 : ARG BASE_IMAGE=ghcr.io/oracle/oraclelinux:8-slim
58+
Step 1/46 : ARG BASE_IMAGE=ghcr.io/oracle/oraclelinux:7-slim
5959
...
6060
Removing intermediate container 57ccb9fff56b
6161
---> 18d366fc3da4
@@ -70,7 +70,7 @@ docker images
7070
7171
REPOSITORY TAG IMAGE ID CREATED SIZE
7272
wls 12.2.1.3.0 18d366fc3da4 About a minute ago 1.41GB
73-
ghcr.io/oracle/oraclelinux 8-slim f7512ac13c1b 6 weeks ago 118MB
73+
ghcr.io/oracle/oraclelinux 7-slim f7512ac13c1b 6 weeks ago 118MB
7474
7575
```
7676
## Copyright

site/create-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Usage: imagetool create [OPTIONS]
1414
| `--chown` | `userid:groupid` for JDK/Middleware installs and patches. | `oracle:oracle` |
1515
| `--docker` | Path to the Docker executable. | `docker` |
1616
| `--dryRun` | Skip Docker build execution and print the Dockerfile to stdout. | |
17-
| `--fromImage` | Docker image to use as a base image when creating a new image. | `ghcr.io/oracle/oraclelinux:8-slim` |
17+
| `--fromImage` | Docker image to use as a base image when creating a new image. | `ghcr.io/oracle/oraclelinux:7-slim` |
1818
| `--httpProxyUrl` | Proxy for the HTTP protocol. Example: `http://myproxy:80` or `http:user:passwd@myproxy:8080` | |
1919
| `--httpsProxyUrl` | Proxy for the HTTPS protocol. Example: `https://myproxy:80` or `https:user:passwd@myproxy:8080` | |
2020
| `--installerResponseFile` | One or more custom response files. A comma separated list of paths to installer response files. Overrides the default responses for the Oracle silent installer. | |

site/rebase-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Usage: imagetool rebase [OPTIONS]
1616
| `--chown` | `userid:groupid` for JDK/Middleware installs and patches. | `oracle:oracle` |
1717
| `--docker` | Path to the Docker executable. | `docker` |
1818
| `--dryRun` | Skip Docker build execution and print the Dockerfile to stdout. | |
19-
| `--fromImage` | Docker image to use as a base image when creating a new image. | `ghcr.io/oracle/oraclelinux:8-slim` |
19+
| `--fromImage` | Docker image to use as a base image when creating a new image. | `ghcr.io/oracle/oraclelinux:7-slim` |
2020
| `--httpProxyUrl` | Proxy for the HTTP protocol. Example: `http://myproxy:80` or `http:user:passwd@myproxy:8080` | |
2121
| `--httpsProxyUrl` | Proxy for the HTTPS protocol. Example: `https://myproxy:80` or `https:user:passwd@myproxy:8080` | |
2222
| `--installerResponseFile` | One or more custom response files. A comma separated list of paths to installer response files. Overrides the default responses for the Oracle silent installer. | |

tests/src/test/java/com/oracle/weblogic/imagetool/tests/ITImagetool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ void createMiiOl8slim(TestInfo testInfo) throws Exception {
965965
String tagName = build_tag + ":" + getMethodName(testInfo);
966966
String command = new CreateCommand()
967967
.tag(tagName)
968-
.fromImage(" ghcr.io/oracle/oraclelinux", "8-slim")
968+
.fromImage("ghcr.io/oracle/oraclelinux", "7-slim")
969969
.version(WLS_VERSION)
970970
.wdtVersion(WDT_VERSION)
971971
.wdtArchive(WDT_ARCHIVE)

0 commit comments

Comments
 (0)