gpt4 book ai didi

docker - 带有debian和jar的Dockerfile

转载 作者:行者123 更新时间:2023-12-02 18:53:46 25 4
gpt4 key购买 nike

我需要在docker容器中运行一个Jar(可以说helloworld.jar)。容器应包括debian作为OS。每当我启动容器时,Jar应该运行。意味着它应该在启动时运行java -jar helloworld.jar。我怎样才能做到这一点 ?

还,如何从中制作docker-compose.yml文件
提前致谢

最佳答案

您可以尝试一个简单的Dockerfile:

FROM ubuntu
RUN apt-get update -y && apt-get upgrade -y
RUN {add java install command here}
RUN mkdir /src
WORKDIR /src
ADD . .
CMD java helloworld.jar

通过 docker build . -t helloworld使用它来构建图像并运行 docker run helloworld
除了使用 ubuntu之外,您还可以使用可用的打开的jdk图像。

关于docker - 带有debian和jar的Dockerfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49138259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com