fix: IO microservice (#38)

Reviewed-on: #38
This commit is contained in:
2026-04-22 08:36:54 +02:00
parent 3ca2afbb4b
commit a386f57c21
29 changed files with 400 additions and 43 deletions
@@ -3,7 +3,7 @@
#
# Before building the container image run:
#
# ./gradlew build -Dquarkus.native.enabled=true
# ./gradlew :modules:core:build -Dquarkus.native.enabled=true
#
# Then, build the image with:
#
@@ -13,7 +13,7 @@
#
# docker run -i --rm -p 8080:8080 quarkus/backcore
#
# The ` registry.access.redhat.com/ubi9/ubi-minimal:9.7` base image is based on UBI 9.
# The `registry.access.redhat.com/ubi9/ubi-minimal:9.7` base image is based on UBI 9.
# To use UBI 8, switch to `quay.io/ubi8/ubi-minimal:8.10`.
###
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7
@@ -21,7 +21,7 @@ WORKDIR /work/
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
&& chown 1001:root /work
COPY --chown=1001:root --chmod=0755 build/*-runner /work/application
COPY --chown=1001:root --chmod=0755 modules/core/build/*-runner /work/application
EXPOSE 8080
USER 1001