Compare commits

..

No commits in common. "e253ce4228f49fa4fdb1f35639422a2f4b006d4f" and "b17388e7933956a51828f0f1122caeb6884b2887" have entirely different histories.

2 changed files with 9 additions and 6 deletions

View File

@ -82,14 +82,17 @@ FROM registry.access.redhat.com/ubi9/openjdk-21:1.21
ENV LANGUAGE='en_US:en' ENV LANGUAGE='en_US:en'
RUN useradd -u 200 -m user
# 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 target/quarkus-app/lib/ /deployments/lib/ COPY --chown=200 target/quarkus-app/lib/ /deployments/lib/
COPY --chown=185 target/quarkus-app/*.jar /deployments/ COPY --chown=200 target/quarkus-app/*.jar /deployments/
COPY --chown=185 target/quarkus-app/app/ /deployments/app/ COPY --chown=200 target/quarkus-app/app/ /deployments/app/
COPY --chown=185 target/quarkus-app/quarkus/ /deployments/quarkus/ COPY --chown=200 target/quarkus-app/quarkus/ /deployments/quarkus/
EXPOSE 8080 EXPOSE 8080
USER 185 USER 200
ENV JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" ENV JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
ENV JAVA_APP_JAR="/deployments/quarkus-run.jar" ENV JAVA_APP_JAR="/deployments/quarkus-run.jar"

View File

@ -4,7 +4,7 @@ quarkus.http.cors.enabled=true
dev.dinauer.kobooboo.kubeconfigs.dir=/var/lib/kubooboo/configs dev.dinauer.kobooboo.kubeconfigs.dir=/var/lib/kubooboo/configs
dev.dinauer.kubooboo.work.dir=/var/lib/kubooboo/work dev.dinauer.kubooboo.work.dir=/var/lib/kubooboo/work
%dev.dev.dinauer.kubooboo.work.dir=C:\\Users\\andre\\Documents\\dev\\kubeman\\backend\\src\\main\\resources\\dev %dev.dev.dinauer.kubooboo.workdir=C:\\Users\\andre\\Documents\\dev\\kubeman\\backend\\src\\main\\resources\\dev
# Keys # Keys
%prod.smallrye.jwt.sign.key.location=/etc/kubooboo/keys/privateKey.pem %prod.smallrye.jwt.sign.key.location=/etc/kubooboo/keys/privateKey.pem