diff --git a/README.md b/README.md index d82aa9f..00a28a1 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,21 @@ You can then execute your native executable with: `./target/hello-world-app-1.0. If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling. +## Creating a local container image + +You can easily create a Podman container image using: + +```shell +./mvnw clean package -Dquarkus.container-image.build=true +``` + +which will create something like: +```shell +$ podman images +REPOSITORY TAG IMAGE ID CREATED SIZE +docker.io/$USER/hello-world-app 1.0.0-SNAPSHOT 4d6c954c252b About a minute ago 426 MB +``` + ## Related Guides - Mutiny ([guide](https://quarkus.io/guides/mutiny-primer)): Write reactive applications with the modern Reactive Programming library Mutiny diff --git a/pom.xml b/pom.xml index 456eb52..d4072a2 100644 --- a/pom.xml +++ b/pom.xml @@ -1,6 +1,5 @@ - - + + 4.0.0 profiling.workshop hello-world-app @@ -48,6 +47,14 @@ io.quarkus quarkus-scheduler + + io.quarkus + quarkus-container-image-podman + + + io.quarkus + quarkus-kubernetes + io.quarkus quarkus-junit5