Adding Quarkus App

This commit is contained in:
Olivier Duval 2024-10-10 23:11:09 +02:00
parent e550e19b72
commit 853adbbdc5
2 changed files with 4 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,6 +1,9 @@
# Gradle # Gradle
.gradle/ .gradle/
build/ build/*
!build/quarkus-app
!build/quarkus-app/*
!build/quarkus-app/*/
# Eclipse # Eclipse
.project .project

View File

@ -81,7 +81,6 @@ FROM registry.access.redhat.com/ubi8/openjdk-21:1.20
ENV LANGUAGE='en_US:en' ENV LANGUAGE='en_US:en'
# We make four distinct layers so if there are application changes the library layers can be re-used # We make four distinct layers so if there are application changes the library layers can be re-used
COPY --chown=185 build/quarkus-app/lib/ /deployments/lib/ COPY --chown=185 build/quarkus-app/lib/ /deployments/lib/
COPY --chown=185 build/quarkus-app/*.jar /deployments/ COPY --chown=185 build/quarkus-app/*.jar /deployments/