BAEL-5957: Creaet prime number finder for Kubernetes heap dump (#13190)

* BAEL-5957: Creaet prime number finder for Kubernetes heap dump

* add dockerfile, kubernetes deploy file

* use baeldung namespace

* add saving primes to a list
This commit is contained in:
Maciej Główka
2023-03-14 21:09:03 +01:00
committed by GitHub
parent 635be4bac0
commit f93f1d2c1e
5 changed files with 84 additions and 0 deletions
@@ -0,0 +1,5 @@
FROM adoptopenjdk:11-jre-hotspot
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} application.jar
ENTRYPOINT ["java", "-jar", "application.jar"]