I have a spring boot application(java) that when run normally needs java 8, my python scripts in directory and the dir must exist where i keep the generated jar and python3.4 on the system
I am able to create a docker container of my spring boot application and package the jar and the scripts/ directory but i am unable to package python3.4 and hence my application is not running as a container. The application comes up but the functionality is not right as the python is missing. Here is my docker file. Can someone help how to package package python3.4 also along with java
cat Dockerfile
FROM java:8
MAINTAINER ABC
EXPOSE 9598
CMD java -jar /data/my-SNAPSHOT.jar
ADD dockerbuild/my-SNAPSHOT.jar /data/my-SNAPSHOT.jar
ADD dockerbuild/scripts/ /data/scripts/