Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions open-liberty/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ Please note that this pattern will duplicate the docker layers for those artifac

There are multiple tags available in this repository.

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.
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.
Comment thread
l3ender marked this conversation as resolved.
Outdated

```dockerfile
FROM %%IMAGE%%:kernel
Comment thread
l3ender marked this conversation as resolved.
Outdated
COPY --chown=1001:0 Sample1.war /config/dropins/
COPY --chown=1001:0 server.xml /config/
RUN configure.sh
RUN features.sh
Comment thread
l3ender marked this conversation as resolved.
```

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