Skip to content

Commit

Permalink
Update samples
Browse files Browse the repository at this point in the history
  • Loading branch information
BarDweller committed Apr 15, 2024
1 parent 0a7fbbd commit 8607fe8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
File renamed without changes.
5 changes: 4 additions & 1 deletion samples/hello-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,11 @@
<goal>exec</goal>
</goals>
<configuration>
<executable>id-debug.sh</executable>
<executable>/bin/sh</executable>
<workingDirectory>${basedir}</workingDirectory>
<arguments>
<argument>${basedir}/id-debug.sh</argument>
</arguments>
</configuration>
</execution>
</executions>
Expand Down
3 changes: 2 additions & 1 deletion samples/hello-spring/pack.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ public class pack {

public static void main(String... args) {
int exitCode = BuildConfig.builder()
.withOutputImage(new ImageReference("snowdrop/hello-quarkus:latest"))
.withBuilderImage(new ImageReference("paketocommunity/builder-ubi-base"))
.withOutputImage(new ImageReference("snowdrop/hello-spring:latest"))
.addNewFileContentApplication(new File("."))
.build()
.getExitCode();
Expand Down

0 comments on commit 8607fe8

Please sign in to comment.