DockerFile to run a java program

前端 未结 8 2049
礼貌的吻别
礼貌的吻别 2021-02-19 16:10

Hi I\'m new to Docker and trying out to write a new image from the scratch. I am writing this dockerFile to compile and run a simple java program available in the same directory

8条回答
  •  轮回少年
    2021-02-19 16:51

    Another way to run it could be with a shell file.

    CMD ["/bin/bash", "-ex", "run.sh"]
    

    and in your run.sh file you can run the javac and java commands.

提交回复
热议问题