feat(docker): add Dockerfiles for Quarkus application in JVM and native modes
Build & Test (NowChessSystems) TeamCity build finished

This commit is contained in:
2026-04-30 09:28:02 +02:00
parent e5fe7d07a5
commit 34b9933046
6 changed files with 12 additions and 12 deletions
@@ -3,7 +3,7 @@
#
# Before building the container image run:
#
# ./gradlew :modules:core:build -Dquarkus.native.enabled=true
# ./gradlew :modules:store:build -Dquarkus.native.enabled=true
#
# Then, build the image with:
#
@@ -21,7 +21,7 @@ WORKDIR /work/
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
&& chown 1001:root /work
COPY --chown=1001:root --chmod=0755 modules/core/build/*-runner /work/application
COPY --chown=1001:root --chmod=0755 modules/store/build/*-runner /work/application
EXPOSE 8080
USER 1001