Initial Commit
Some checks failed
CI / deploy (push) Failing after 5s

This commit is contained in:
Arindy
2024-10-22 20:53:00 +02:00
commit 89c1448888
18 changed files with 1099 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
FROM quay.io/quarkus/quarkus-micro-image:2.0
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"]