mirror of https://github.com/ZhongFuCheng3y/austin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
306 B
15 lines
306 B
2 years ago
|
# 使用openjdk8的镜像
|
||
|
FROM openjdk:8-jre
|
||
|
|
||
|
ENV PARAMS=""
|
||
|
|
||
|
# 设置工作目录
|
||
|
WORKDIR /build
|
||
|
# 将jar包复制到容器中
|
||
2 years ago
|
ADD ./austin-web/target/austin-web-0.0.1-SNAPSHOT.jar ./austin.jar
|
||
2 years ago
|
# 暴露8080端口
|
||
|
EXPOSE 8080
|
||
|
|
||
|
# 运行jar包
|
||
|
ENTRYPOINT ["sh","-c","java -jar $JAVA_OPTS austin.jar $PARAMS"]
|