Skip to content

Commit c3e608b

Browse files
committed
correct doc for feature config
1 parent 80f6a3a commit c3e608b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

open-liberty/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ Please note that this pattern will duplicate the docker layers for those artifac
107107

108108
There are multiple tags available in this repository.
109109

110-
The `kernel` image contains just the Liberty kernel and no additional runtime features. This image is the recommended basis for custom built images, so that they can contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application, and then uses the `configure.sh` script to download those features from the online repository.
110+
The `kernel` image contains just the Liberty kernel and no additional runtime features. This image is the recommended basis for custom built images, so that they can contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application, and then uses the `features.sh` script to download those features from the online repository.
111111

112112
```dockerfile
113113
FROM open-liberty:kernel
114114
COPY --chown=1001:0 Sample1.war /config/dropins/
115115
COPY --chown=1001:0 server.xml /config/
116-
RUN configure.sh
116+
RUN features.sh
117117
```
118118

119119
The full list of images are found in the `Supported tags and respective Dockerfile links` section above.

0 commit comments

Comments
 (0)