Files
dice-tower/src/main/docker/Dockerfile.native
Arindy ca538e7980
All checks were successful
CI / deploy (push) Successful in 7m36s
CI / deploy (pull_request) Successful in 6m6s
initial commit
2025-02-09 20:54:04 +01:00

12 lines
291 B
Docker

FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10
WORKDIR /work/
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
&& chown 1001:root /work
COPY --chown=1001:root target/*-runner /work/application
EXPOSE 8080
USER 1001
ENTRYPOINT ["./application", "-Dquarkus.http.host=0.0.0.0"]