Skip to content

Commit

Permalink
fix jvm
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 committed Aug 2, 2024
1 parent 7ca8252 commit cb49091
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.jvm
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ RUN ./mvnw package -DskipTests
FROM registry.access.redhat.com/ubi8/openjdk-21:1.19
ENV LANGUAGE='en_US:en'

COPY --from=build --chown=185 /code/target/target/quarkus-app/lib/ /deployments/lib/
COPY --from=build --chown=185 /code/target/target/quarkus-app/*.jar /deployments/
COPY --from=build --chown=185 /code/target/target/quarkus-app/app/ /deployments/app/
COPY --from=build --chown=185 /code/target/target/quarkus-app/quarkus/ /deployments/quarkus/
COPY --from=build --chown=185 /code/target/quarkus-app/lib/ /deployments/lib/
COPY --from=build --chown=185 /code/target/quarkus-app/*.jar /deployments/
COPY --from=build --chown=185 /code/target/quarkus-app/app/ /deployments/app/
COPY --from=build --chown=185 /code/target/quarkus-app/quarkus/ /deployments/quarkus/

EXPOSE 8080
USER 185
Expand Down

0 comments on commit cb49091

Please sign in to comment.