Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First-party extension documentation improvements #180

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion first-party/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A list of Jib extensions developed and maintained by the Jib developer team. For
- Jib Quarkus Extension ([Maven](jib-quarkus-extension-maven) / [Gradle](jib-quarkus-extension-gradle))
- Jib Ownership Extension ([Maven](jib-ownership-extension-maven) / [Gradle](jib-ownership-extension-gradle))
- Jib Spring Boot Extension ([Maven](jib-spring-boot-extension-maven) / [Gradle](jib-spring-boot-extension-gradle))
- Jib GraalVM Native Image Extension ([Maven](jib-native-image-extension-maven))
- Jib GraalVM Native Image Extension ([Maven](jib-native-image-extension-maven) / [Gradle](jib-native-image-extension-gradle))

If you have written a useful extension that you think will benefit the Jib community, file a PR to add a link to the [Third-Party Extensions](../third-party/) list. Jib users will greatly appreciate it!

Expand Down
2 changes: 1 addition & 1 deletion first-party/jib-native-image-extension-maven/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Jib GraalVM Native Image Extension

This extension containerizes a [GraalVM native-imgae](https://www.graalvm.org/docs/reference-manual/native-image/) application configured with [Native Image Maven Plugin](https://graalvm.github.io/native-build-tools/latest/maven-plugin.html).
This extension containerizes a [GraalVM native-image](https://www.graalvm.org/docs/reference-manual/native-image/) application configured with [Native Image Maven Plugin](https://graalvm.github.io/native-build-tools/latest/maven-plugin.html).

The extension expects the `native-image-maven-plugin` to do the the heavy lifting of generating a "native image" (with the `native-image:native-image` goal). (The "image" in "native image" refers to an executable binary, not a container image.) Then the extension simply copies the binary, say, `<project root>/target/com.example.mymainclass`, into a container image and sets executable bits. It also auto-sets the container image entrypoint to the binary, say, `/app/com.example.mymainclass` (unless you manually configure `<container><entrypoint>` in the main Jib configuration).

Expand Down