I have a spring boot app which I have dockerized using DockerFile now my spring boot app also runs a python script for which I will need a python environment in the same docker image. how do I modify my Dockerfile so that I achieve the above functionality? Also please tell me what will be the python home in that case. my DockerFile is as follows:
FROM openjdk:11
ADD target/python-service-0.0.1-SNAPSHOT.jar python-service-0.0.1-SNAPSHOT.jar
EXPOSE 9091
ENTRYPOINT ["java", "-jar", "python-service-0.0.1-SNAPSHOT.jar"]